<?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>Protoscale</title>
	<atom:link href="http://www.protoscale.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.protoscale.com</link>
	<description>Software * Web * Graphics</description>
	<lastBuildDate>Mon, 16 Apr 2012 14:23:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Appcelerator Titanium</title>
		<link>http://www.protoscale.com/2012/04/16/appcelerator-titanium/</link>
		<comments>http://www.protoscale.com/2012/04/16/appcelerator-titanium/#comments</comments>
		<pubDate>Mon, 16 Apr 2012 14:23:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.protoscale.com/?p=53</guid>
		<description><![CDATA[Appcelerator Titanium is a platform for developing mobile, tablet and desktop applications using web technologies. Appcelerator Titanium is developed by Appcelerator Inc. and was introduced in December 2008. Support for developing iPhone- and Android-based mobile applications was added in June 2009. Support for developing iPad-based tablet apps was added in April 2010. BlackBerry support was announced on June 2010 but [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Appcelerator Titanium</strong> is a platform for developing mobile, tablet and desktop applications using web technologies. Appcelerator Titanium is developed by Appcelerator Inc. and was introduced in December 2008. Support for developing iPhone- and Android-based mobile applications was added in June 2009. Support for developing iPad-based tablet apps was added in April 2010. BlackBerry support was announced on June 2010 but it is still in closed beta.</p>
<p>Appcelerator Titanium Mobile is one of several <a title="Multiple phone web based application framework" href="http://en.wikipedia.org/wiki/Multiple_phone_web_based_application_framework">phone web based application framework</a> solutions allowing web developers to apply existing skills to create native applications for iPhone and Android. Yet, while using the familiar <a title="JavaScript" href="http://en.wikipedia.org/wiki/JavaScript">JavaScript</a> <em>syntax</em>, developers will also have to learn the Titanium API, which is quite different from familiar web frameworks such as jQuery.</p>
<p>Appcelerator Titanium is sometimes compared to <a title="Adobe Integrated Runtime" href="http://en.wikipedia.org/wiki/Adobe_Integrated_Runtime">Adobe Air</a> for developing desktop applications for Windows, Mac and also Linux</p>
<p>All application source code gets deployed to the mobile device where it is <a title="Interpreter (computing)" href="http://en.wikipedia.org/wiki/Interpreter_(computing)">interpreted</a> (the company&#8217;s marketing refers to this as being a &#8220;cross-compiler&#8221;). This means that during development any errors in the source code do not occur until run-time. At run time, the loading performance is lower, as the last step (i.e. interpreting the source code on the device) needs to be done every time the application runs.</p>
<p>Some developers have reported that although working with Titanium gives fast results, making Titanium well suited for <a title="Prototyping" href="http://en.wikipedia.org/wiki/Prototyping">prototyping</a>, there are issues around differences in behaviour of the API cross-platform, stability and memory management, that made them re-write their apps in native code in the end. However, as of February 28th, 2012, there have been over 30,000 applications shipped to the app stores built with Titanium, including NBCUniversal&#8217;s flagship mobile app. Many Appcelerator developers cite the speed of development, native UI, and JavaScript skill set needed as reasons why they choose to use Appcelerator.</p>
<p>In June 2011, Appcelerator released Titanium Studio and Titanium Mobile 1.7. Titanium Studio is a full open standards IDE that is derived from Aptana Studio which Appcelerator acquired in January 2011. In April 2010 Appcelerator expanded the Titanium product line with the Titanium Tablet SDK. The Titanium Tablet SDK draws heavily from the existing support for iPhone but also includes native support for iPad-only user interface controls such as split views and popovers. Initially the mobile SDK only supported development for iPad, but support now includes Android-based tablets as well.</p>
<p>Appcelerator, Inc. also offers cloud-based services for packaging, testing and distributing software applications developed on the Titanium platform. The company expanded its product line in January 2011 by acquiring Aptana, Inc, a developer of open source tools for building web applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.protoscale.com/2012/04/16/appcelerator-titanium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.Net Linq (Language-Integrated Query)</title>
		<link>http://www.protoscale.com/2011/12/04/net-linq-language-integrated-query/</link>
		<comments>http://www.protoscale.com/2011/12/04/net-linq-language-integrated-query/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 17:43:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.protoscale.com/?p=20</guid>
		<description><![CDATA[Language-Integrated Query (LINQ) is a set of features introduced in Visual Studio 2008 that extends powerful query capabilities to the language syntax of C# and Visual Basic. LINQ introduces standard, easily-learned patterns for querying and updating data, and the technology can be extended to support potentially any kind of data store. Visual Studio includes LINQ provider assemblies [...]]]></description>
			<content:encoded><![CDATA[<p>Language-Integrated Query (LINQ) is a set of features introduced in Visual Studio 2008 that extends powerful query capabilities to the language syntax of C# and Visual Basic. LINQ introduces standard, easily-learned patterns for querying and updating data, and the technology can be extended to support potentially any kind of data store. Visual Studio includes LINQ provider assemblies that enable the use of LINQ with .NET Framework collections, SQL Server databases, ADO.NET Datasets, and XML documents.</p>
<p>A query is an expression that retrieves data from a data source. Queries are usually expressed in a specialized query language. Different languages have been developed over time for the various types of data sources, for example SQL for relational databases and XQuery for XML. Therefore, developers have had to learn a new query language for each type of data source or data format that they must support. LINQ simplifies this situation by offering a consistent model for working with data across various kinds of data sources and formats. In a LINQ query, you are always working with objects. You use the same basic coding patterns to query and transform data in XML documents, SQL databases, ADO.NET Datasets, .NET collections, and any other format for which a LINQ provider is available.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.protoscale.com/2011/12/04/net-linq-language-integrated-query/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.protoscale.com/2011/12/01/hello-world/</link>
		<comments>http://www.protoscale.com/2011/12/01/hello-world/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 17:04:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.protoscale.com/?p=1</guid>
		<description><![CDATA[Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!]]></description>
			<content:encoded><![CDATA[<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.protoscale.com/2011/12/01/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

