<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Dev Tricks</title>
	
	<link>http://www.ladysign-apps.com/developer</link>
	<description>Lee Boonstra's techblog.</description>
	<lastBuildDate>Tue, 14 May 2013 20:35:49 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/ladysign" /><feedburner:info uri="ladysign" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Removing a local Web SQL db, LocalStorage or AppCache in Google Chrome</title>
		<link>http://feedproxy.google.com/~r/ladysign/~3/tDHOeo0iOoY/</link>
		<comments>http://www.ladysign-apps.com/developer/environment/removing-a-local-web-sql-database-in-google-chrome/#comments</comments>
		<pubDate>Tue, 14 May 2013 17:27:41 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Environment]]></category>
		<category><![CDATA[Sencha Touch]]></category>

		<guid isPermaLink="false">http://www.ladysign-apps.com/developer/?p=351</guid>
		<description><![CDATA[It is a huge bummer that you can not delete a local database from your Google Chrome Dev Tools don&#8217;t you think? Well there is easy solution to do this. Open Google Chrome and enter the following url: chrome://settings/cookies/. Here [...]]]></description>
				<content:encoded><![CDATA[<p>It is a huge bummer that you can not delete a local database from your Google Chrome Dev Tools don&#8217;t you think?<br />
Well there is easy solution to do this.</p>
<p>Open Google Chrome and enter the following url: <a href="chrome://settings/cookies/">chrome://settings/cookies/</a>.<br />
Here you can search for any particular site or remove all locally stored data.</p>
<p>In my case I just searched for <em>localhost</em>, and I get an exact overview of all my Cookies, LocalStorage and Web SQL databases&#8230;<br />
Awesome, I can double click on it, and it will ask me to remove the database. Click on the <strong>remove</strong> button and it is gone!</p>
<p>What about Application Cache?<br />
How can I remove that?<br />
Use the following url and press the <strong>remove</strong> link for the corresponding site.<br />
<a href="chrome://appcache-internals/">chrome://appcache-internals/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/developer/environment/removing-a-local-web-sql-database-in-google-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ladysign-apps.com/developer/environment/removing-a-local-web-sql-database-in-google-chrome/</feedburner:origLink></item>
		<item>
		<title>Remove .DS_Store files from my git repo and ignore them.</title>
		<link>http://feedproxy.google.com/~r/ladysign/~3/Mrr4naoN7Qc/</link>
		<comments>http://www.ladysign-apps.com/developer/environment/remove-ds_store-files-from-my-git-repo-and-ignore-them/#comments</comments>
		<pubDate>Sat, 13 Apr 2013 09:23:13 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Environment]]></category>
		<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://www.ladysign-apps.com/developer/?p=348</guid>
		<description><![CDATA[I easily can get frustrated from all those auto-generated .DS_Store files on my Mac. These are the steps to remove and ignore them! 1. Remove all DS store files from the whole folder. Run the following command in your terminal: [...]]]></description>
				<content:encoded><![CDATA[<p>I easily can get frustrated from all those auto-generated .DS_Store files on my Mac.<br />
These are the steps to remove and ignore them!</p>
<p><strong>1. Remove all DS store files from the whole folder.</strong><br />
Run the following command in your terminal:</p><pre class="crayon-plain-tag">find . -name '*.DS_Store' -type f -delete</pre><p></p>
<p><strong>2. Create a hidden .gitignore file</strong><br />
My .gitignore file looks like this.<br />
Apart from the .DS_Store store files, I also ignore packages, archives, project settings,<br />
sass-cache files and more:</p><pre class="crayon-plain-tag">/.buildpath
/build/
*/archive/

__MACOSX
.DS_Store

.project
.settings
.classpath
.sass-cache/

# OS generated files #
######################
*/.DS_Store
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
Icon?
ehthumbs.db
Thumbs.db

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip</pre><p></p>
<p><strong>3. Commit the removed files and the hidden .gitignore file.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/developer/environment/remove-ds_store-files-from-my-git-repo-and-ignore-them/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ladysign-apps.com/developer/environment/remove-ds_store-files-from-my-git-repo-and-ignore-them/</feedburner:origLink></item>
		<item>
		<title>No sound airplay apple tv</title>
		<link>http://feedproxy.google.com/~r/ladysign/~3/9asUt7jezuc/</link>
		<comments>http://www.ladysign-apps.com/developer/uncategorized/no-sound-airplay-apple-tv/#comments</comments>
		<pubDate>Mon, 01 Apr 2013 18:44:01 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[airplay]]></category>
		<category><![CDATA[apple tv]]></category>
		<category><![CDATA[audio driver]]></category>
		<category><![CDATA[hdmi]]></category>
		<category><![CDATA[no audio]]></category>

		<guid isPermaLink="false">http://www.ladysign-apps.com/developer/?p=345</guid>
		<description><![CDATA[Problems with playing your video&#8217;s, when using Airplay Apple TV or just by playing your video&#8217;s through an HDMI cable? Just restart your audio driver. Enter the following line into your terminal: [crayon-5192a0348a536/]]]></description>
				<content:encoded><![CDATA[<p>Problems with playing your video&#8217;s, when using Airplay Apple TV or just by playing your video&#8217;s through an HDMI cable? Just restart your audio driver. Enter the following line into your terminal:</p>
<p></p><pre class="crayon-plain-tag">sudo kill `ps -ax | grep 'coreaudiod' | grep 'sbin' |awk '{print $1}'`</pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/developer/uncategorized/no-sound-airplay-apple-tv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ladysign-apps.com/developer/uncategorized/no-sound-airplay-apple-tv/</feedburner:origLink></item>
		<item>
		<title>Easy update Sencha Cmd</title>
		<link>http://feedproxy.google.com/~r/ladysign/~3/Swe8pngmznk/</link>
		<comments>http://www.ladysign-apps.com/developer/environment/easy-update-sencha-cmd/#comments</comments>
		<pubDate>Fri, 22 Mar 2013 11:09:47 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Environment]]></category>
		<category><![CDATA[Sencha]]></category>
		<category><![CDATA[Sencha CMD]]></category>
		<category><![CDATA[sencha update]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.ladysign-apps.com/developer/?p=343</guid>
		<description><![CDATA[Enter these commands for easy updating Sencha Cmd: Download and install the latest stable release. [crayon-5192a0348a91c/] Just check for the latest stable release. [crayon-5192a0348ad03/] Download and install the latest beta release. [crayon-5192a0348b0e9/] Just check for the latest new beta release. [...]]]></description>
				<content:encoded><![CDATA[<p>Enter these commands for easy updating Sencha Cmd:</p>
<p>Download and install the latest stable release.</p><pre class="crayon-plain-tag">sencha upgrade</pre><p></p>
<p>Just check for the latest stable release.</p><pre class="crayon-plain-tag">sencha upgrade --check</pre><p></p>
<p>Download and install the latest beta release.</p><pre class="crayon-plain-tag">sencha upgrade --beta</pre><p></p>
<p>Just check for the latest new beta release.</p><pre class="crayon-plain-tag">sencha upgrade --beta --check</pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/developer/environment/easy-update-sencha-cmd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ladysign-apps.com/developer/environment/easy-update-sencha-cmd/</feedburner:origLink></item>
		<item>
		<title>Fix GIT Http Error</title>
		<link>http://feedproxy.google.com/~r/ladysign/~3/lmEQ19P_LCU/</link>
		<comments>http://www.ladysign-apps.com/developer/environment/fix-git-http-error/#comments</comments>
		<pubDate>Wed, 20 Mar 2013 18:55:20 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Environment]]></category>
		<category><![CDATA[fatal]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[git mac client]]></category>
		<category><![CDATA[git push]]></category>
		<category><![CDATA[git sync]]></category>
		<category><![CDATA[http error]]></category>

		<guid isPermaLink="false">http://www.ladysign-apps.com/developer/?p=341</guid>
		<description><![CDATA[Suddenly my Git Mac Client starts throwing the error message: &#8220;No internet connection&#8221; every time I sync my repo. But I did have an internet connection! I tried it again, but this time on the command line; with a git [...]]]></description>
				<content:encoded><![CDATA[<p>Suddenly my Git Mac Client starts throwing the error message: &#8220;No internet connection&#8221; every time I sync my repo.<br />
But I did have an internet connection! I tried it again, but this time on the command line; with a git push.<br />
If git gives an error that reads &#8220;fatal: The remote end hung up unexpectedly&#8221;, it usually indicates that your HTTP POST buffer is too small to handle the files being posted. Try increasing the buffer size by running the following command on the command line:</p>
<p></p><pre class="crayon-plain-tag">git config http.postBuffer 524288000</pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/developer/environment/fix-git-http-error/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.ladysign-apps.com/developer/environment/fix-git-http-error/</feedburner:origLink></item>
		<item>
		<title>Mac OSX: Run Sublime from your terminal</title>
		<link>http://feedproxy.google.com/~r/ladysign/~3/5k121u3maaM/</link>
		<comments>http://www.ladysign-apps.com/developer/environment/mac-osx-run-sublime-from-your-terminal/#comments</comments>
		<pubDate>Wed, 23 Jan 2013 15:59:43 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Environment]]></category>
		<category><![CDATA[Sublime Text]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.ladysign-apps.com/developer/?p=330</guid>
		<description><![CDATA[Wouldn&#8217;t it be cool to navigate within your terminal to your project folder and then run sublime with the following command: [crayon-5192a0348c08b/] It&#8217;s easy to setup&#8230; Add the bin folder to your paths: First open your ~/.bash_profile file. (it&#8217;s hidden [...]]]></description>
				<content:encoded><![CDATA[<p>Wouldn&#8217;t it be cool to navigate within your terminal to your project folder and then run sublime with the following command:</p><pre class="crayon-plain-tag">subl .</pre><p>It&#8217;s easy to setup&#8230;</p>
<p><strong>Add the bin folder to your paths:</strong><br />
First open your <em>~/.bash_profile</em> file. (it&#8217;s hidden so you will need to enable hidden folders.)<br />
Add the following line:</p><pre class="crayon-plain-tag">export PATH=~/bin:$PATH</pre><p></p>
<p><strong>Create a symlink</strong></p><pre class="crayon-plain-tag">sudo ln -s &quot;/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl&quot; ~/bin/subl</pre><p>Please note the first path, is the path to your Sublime Text 2 app. If you moved your app to a different folder you will need to modify this line.<br />
The second path is the place where you will create your symlink. This is the ~/bin folder.<br />
Since you&#8217;ve added the bin folder to your classpaths; you can now easily run the <strong>subl .</strong> commands.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/developer/environment/mac-osx-run-sublime-from-your-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ladysign-apps.com/developer/environment/mac-osx-run-sublime-from-your-terminal/</feedburner:origLink></item>
		<item>
		<title>Handy Sublime Shortcuts</title>
		<link>http://feedproxy.google.com/~r/ladysign/~3/eK0HrVxQKso/</link>
		<comments>http://www.ladysign-apps.com/developer/environment/handy-sublime-shortcuts/#comments</comments>
		<pubDate>Wed, 23 Jan 2013 15:40:06 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Environment]]></category>
		<category><![CDATA[Sublime Text]]></category>
		<category><![CDATA[sublime]]></category>

		<guid isPermaLink="false">http://www.ladysign-apps.com/developer/?p=327</guid>
		<description><![CDATA[- Command + Shift + P &#8211; Opens the magic dropdown - Command + Shift + P > Package Control: Install Package &#8211; go install nice plugins - Command + P > : &#8211; go to line number - Command [...]]]></description>
				<content:encoded><![CDATA[<p>- Command + Shift + P &#8211; Opens the magic dropdown <img src='http://www.ladysign-apps.com/developer/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
- Command + Shift + P > Package Control: Install Package &#8211; go install nice plugins</p>
<p>- Command + P > :
<line nummer>  &#8211; go to line number<br />
- Command + P > @ &#8211; gives you a list of all the methods in this file.<br />
- Command + / &#8211; commenting/uncommenting<br />
- Command + ] &#8211; Indent<br />
- Command + [ &#8211; Unindent<br />
- Control + Command + Up &#8211; move selected line up<br />
- Control + Command + Down &#8211; move selected line down<br />
- Command + Number &#8211; switches to an open tab. Command + 1 goes to the 1st tab, Command + 2 &#8211; 2nd tab, etc.<br />
- Shift + Command + F &#8211; searches through the whole project<br />
- Shift + Control + K &#8211; deletes selected code or line<br />
- Ctrl + ` &#8211; Opens Sublime console</p>
<p>(if you have JSHINT installed)<br />
- Command + J &#8211; Run JSHint</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/developer/environment/handy-sublime-shortcuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ladysign-apps.com/developer/environment/handy-sublime-shortcuts/</feedburner:origLink></item>
		<item>
		<title>Projects in Sublime Text 2</title>
		<link>http://feedproxy.google.com/~r/ladysign/~3/5wD0kGTVVI0/</link>
		<comments>http://www.ladysign-apps.com/developer/environment/projects-in-sublime-text-2/#comments</comments>
		<pubDate>Wed, 23 Jan 2013 15:05:22 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Environment]]></category>
		<category><![CDATA[Sublime Text]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[sublime]]></category>

		<guid isPermaLink="false">http://www.ladysign-apps.com/developer/?p=321</guid>
		<description><![CDATA[Working with projects in Sublime Text 2 is less straightforward compared to any other editor or IDE. Though it&#8217;s easy to setup: 1. Open Sublime 2. File > Open (select project folder) 2. Project > Add folder to project 3. [...]]]></description>
				<content:encoded><![CDATA[<p>Working with projects in Sublime Text 2 is less straightforward compared to any other editor or IDE.<br />
Though it&#8217;s easy to setup:</p>
<p>1. Open Sublime<br />
2. File > Open (select project folder)<br />
2. Project > Add folder to project<br />
3. Select project folder and press ok.<br />
4. Project > Save project as<br />
2 files will be created: <em>untitled.sublime-project</em> &#038; <em>untitled.sublime-workspace</em></p>
<p>By default the sidebar view is hidden.<br />
To enable the sidebar and view all open files:<br />
<strong>View > Sidebar > Show Sidebar</strong></p>
<p>Next time you can open your project with:<br />
<strong>Project > Open Project > <em>untitled.sublime-project</em></strong></p>
<p>The <em>untitled.sublime-project</em> &#038; <em>untitled.sublime-workspace</em> files allow you to make project/workspace specific configurations to Sublime.<br />
You define multiple folder paths as well as specify folders and files you want to exclude from view. For example:</p><pre class="crayon-plain-tag">{
    &quot;folders&quot;:
    [
        {
            &quot;path&quot;: &quot;wwwroot&quot;,
            &quot;folder_exclude_patterns&quot;: [&quot;images&quot;]
        },
        {
            &quot;path&quot;: &quot;c:\wwwroot\project1\assets&quot;,
            &quot;name&quot;: &quot;Project 1&quot;,
            &quot;file_exclude_patterns&quot;: [&quot;*.php&quot;]
        }
    ],
    &quot;settings&quot;:
    {
        &quot;tab_size&quot;: 8
    }
 }</pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/developer/environment/projects-in-sublime-text-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ladysign-apps.com/developer/environment/projects-in-sublime-text-2/</feedburner:origLink></item>
		<item>
		<title>Mac OSX: How to install JSHint to the commandline / Sublime Text with Node</title>
		<link>http://feedproxy.google.com/~r/ladysign/~3/dds39gpH2jE/</link>
		<comments>http://www.ladysign-apps.com/developer/environment/mac-osx-how-to-install-jshint-to-the-commandline-sublime-text-with-node/#comments</comments>
		<pubDate>Wed, 23 Jan 2013 14:43:45 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Environment]]></category>
		<category><![CDATA[Sublime Text]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[node]]></category>
		<category><![CDATA[npm]]></category>
		<category><![CDATA[setup jslint]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.ladysign-apps.com/developer/?p=314</guid>
		<description><![CDATA[Install Node: http://nodejs.org/download/ Download the Mac OS X package, and install it. Test by opening up a Terminal and typing &#8220;node -v&#8221;. It should say something like &#8220;v0.8.11&#8243; or higher. Install NPM (package manager) https://npmjs.org/ [crayon-5192a0348d024/] Install JSHint via NPM [...]]]></description>
				<content:encoded><![CDATA[<p><strong>Install Node:</strong><br />
<a href="http://nodejs.org/download/">http://nodejs.org/download/</a><br />
Download the Mac OS X package, and install it. Test by opening up a Terminal and typing &#8220;node -v&#8221;. It should say something like &#8220;v0.8.11&#8243; or higher.</p>
<p><strong>Install NPM (package manager)</strong></p>
<p>https://npmjs.org/</p>
<p></p><pre class="crayon-plain-tag">curl http://npmjs.org/install.sh | sh</pre><p></p>
<p><strong>Install JSHint via NPM</strong></p><pre class="crayon-plain-tag">sudo npm -g install jslint</pre><p></p>
<p>To have JSHint installed in Sublime, use the package control and install the following packages:</p>
<p><a href="http://wbond.net/sublime_packages/package_control/installation">http://wbond.net/sublime_packages/package_control/installation</a></p>
<p>CTRL/CMD + SHIFT + P > Package Control : Install Packages > Sublime JSHINT<br />
<a href="https://github.com/uipoet/sublime-jshint">https://github.com/uipoet/sublime-jshint</a><br />
CTRL/CMD + SHIFT + P > Package Control : Install Packages > SublimeLinter<br />
<a href="https://github.com/SublimeLinter/SublimeLinter">https://github.com/SublimeLinter/SublimeLinter</a><br />
CTRL/CMD + SHIFT + P > Package Control : Install Packages > Sublime On Save Build<br />
<a href="https://github.com/alexnj/SublimeOnSaveBuild">https://github.com/alexnj/SublimeOnSaveBuild</a><br />
CTRL/CMD + SHIFT + P > Package Control: Install Packages > Detect Syntax<br />
<a href="https://github.com/phillipkoebbe/DetectSyntax">https://github.com/phillipkoebbe/DetectSyntax</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/developer/environment/mac-osx-how-to-install-jshint-to-the-commandline-sublime-text-with-node/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ladysign-apps.com/developer/environment/mac-osx-how-to-install-jshint-to-the-commandline-sublime-text-with-node/</feedburner:origLink></item>
		<item>
		<title>Upgrade Ext JS 4.1 to Ext JS 4.2 with Sencha Cmd</title>
		<link>http://feedproxy.google.com/~r/ladysign/~3/jbrrAoh5c68/</link>
		<comments>http://www.ladysign-apps.com/developer/environment/upgrade-extjs4-1-to-extjs4-2-with-sencha-cmd/#comments</comments>
		<pubDate>Thu, 10 Jan 2013 10:38:08 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Environment]]></category>
		<category><![CDATA[Ext JS]]></category>
		<category><![CDATA[extjs4.2]]></category>
		<category><![CDATA[Sencha CMD]]></category>
		<category><![CDATA[upgrade ext]]></category>

		<guid isPermaLink="false">http://www.ladysign-apps.com/developer/?p=308</guid>
		<description><![CDATA[When you started your Ext JS 4.* project with Sencha Cmd you know how easy it works to startup and scaffold. It&#8217;s also easy to upgrade your application to the latest Ext JS 4.2 build. Download Ext JS 4.2 Unpack [...]]]></description>
				<content:encoded><![CDATA[<p>When you started your Ext JS 4.* project with Sencha Cmd you know how easy it works to startup and scaffold.<br />
It&#8217;s also easy to upgrade your application to the latest Ext JS 4.2 build.</p>
<p><a href="http://www.sencha.com/products/extjs/download/">Download Ext JS 4.2</a><br />
Unpack the folder, open your console and navigate to your Ext JS app.</p>
<p>Enter the following command to upgrade:</p><pre class="crayon-plain-tag">sencha app upgrade ../downloads/ext4.2</pre><p>(the last path points to your unpacked folder of extjs4.2)</p>
<p>And that&#8217;s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/developer/environment/upgrade-extjs4-1-to-extjs4-2-with-sencha-cmd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.ladysign-apps.com/developer/environment/upgrade-extjs4-1-to-extjs4-2-with-sencha-cmd/</feedburner:origLink></item>
	</channel>
</rss>
