<?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>All1 Source technologies &#187; Windows</title>
	<atom:link href="http://www.all1sourcetech.com/tag/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.all1sourcetech.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 12 Aug 2010 12:04:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Programming Language: Seed7 05.20100307</title>
		<link>http://www.all1sourcetech.com/programming-language-seed7-0520100307/</link>
		<comments>http://www.all1sourcetech.com/programming-language-seed7-0520100307/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 11:19:26 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Opensource]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[bcc32 C Compiler]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[machine code]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[port]]></category>
		<category><![CDATA[programming language]]></category>
		<category><![CDATA[Seed7]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=1031</guid>
		<description><![CDATA[Seed7 is a general purpose programming language, which is designed by Thomas Mertes. The Seed7 interpreter and the example programs are open-source software. There is also an open-source Seed7 compiler. The compiler compiles Seed7 programs to C programs which are subsequently compiled to machine code. Functions with type results and type parameters are more elegant [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Seed7 </strong>is a <a href="http://www.all1tunes.com" target="_blank"><strong>general purpose programming language</strong></a>, which is designed by <strong>Thomas Mertes</strong>. The Seed7 interpreter and the example programs are open-source software. There is also an open-source Seed7 compiler. The compiler compiles <a href="http://www.all1martpro.com" target="_blank">Seed7</a> programs to C programs which are subsequently compiled to machine code. Functions with type results and type parameters are more elegant than a template or generics concept. </p>
<p>And object orientation is used where it brings advantages and not in places where other solutions are more obvious.</p>
<p><strong>Key Features of Seed7:-</strong> </p>
<p>• User defined statements and operators.<br />
• Types are first class objects (Templates and generics can be defined easily without special syntax).<br />
• Predefined constructs like arrays or for-loops are declared in the language itself.<br />
• Object orientation with interfaces and multiple dispatch.<br />
• Static type checking and no automatic casts.<br />
• Support for bigInteger and big Rational numbers which have unlimited size.<br />
• exception handling<br />
• overloading of procedures/functions/operators/statements<br />
• Various predefined types like resizable arrays, hashes, bitsets, structs, color, time, duration, etc.<br />
• Runs under linux, various <a href="http://www.all1press.com" target="_blank">unix versions</a> and windows.<br />
• The interpreter and the example programs use the GPL license, while the runtime library uses the LGPL license.</p>
<p><strong>Newly included features in this release</strong>: </p>
<p>• The functions in the <a href="http://www.all1social.com" target="_blank">gethttp.s7i library</a> were improved to allow the specification of a port number as part of the location (e.g.: <strong>localhost:1080/index.html</strong>).<br />
• The <strong>tarx.sd7 (tar archiving utility)</strong> example program was<br />
renamed to <strong>tar7.sd7</strong> .<br />
• The <strong>codepage 8859_11</strong> was added to the <strong>charsets.s7i library</strong>.<br />
• The <strong>bas7.sd7 (basic interpreter)</strong> example program was improved.<br />
• The <a href="http://www.all1press.com" target="_blank">toutf8.sd7</a> example program was improved to write an explanation and to support several <strong>IANA/MIME charset names</strong>.<br />
• An explanation what to do, when the <strong>path of the bcc32 C compiler </strong>contains a space, was added to <strong>&#8217;src/read_me.txt&#8217;</strong>.<br />
• Documentation comments were added to the <strong>charsets.s7i library</strong>.</p>
<p><a href="http://www.all1martpro.com" target="_blank">http://www.all1martpro.com</a></p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/programming-language-seed7-0520100307/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to restart a windows service using VBScript</title>
		<link>http://www.all1sourcetech.com/restart-windows-service-vbscript/</link>
		<comments>http://www.all1sourcetech.com/restart-windows-service-vbscript/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 10:27:07 +0000</pubDate>
		<dc:creator>Shweta</dc:creator>
				<category><![CDATA[Editorial]]></category>
		<category><![CDATA[Purely Technical]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[VBScript]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[wscript]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=992</guid>
		<description><![CDATA[You can restart a windows service with the use of VBScript as shown in the below code snippet:
Set oshell = createobject(&#8221;Wscript.Shell&#8220;)
oshell.run&#8221;cmd.exe&#8221;
wscript.sleep 500
oshell.sendkeys &#8220;net stop &#8220;&#8221;Your service name here&#8220;&#8221;"+(&#8221;{Enter}&#8221;)
wscript.sleep 5000
oshell.sendkeys &#8220;net start &#8220;&#8221;Your service name here&#8220;&#8221;"+(&#8221;{Enter}&#8221;)
wscript.sleep 5000
oshell.sendkeys &#8220;exit&#8220;+(&#8221;{Enter}&#8221;)
 set oshell = nothing
 WScript.Quit
`
http://www.all1press.com
http://www.all1tunes.com
]]></description>
			<content:encoded><![CDATA[<p>You can restart a <a href="http://www.all1martpro.com" target="_blank">windows service</a> with the use of VBScript as shown in the below code snippet:</p>
<p><strong>Set oshell = createobject(&#8221;</strong><span style="color: #993300;"><strong>Wscript.Shell</strong></span><strong>&#8220;)<br />
oshell.run&#8221;</strong><span style="color: #993300;"><strong>cmd.exe</strong></span><strong>&#8221;<br />
wscript.sleep </strong><span style="color: #993300;"><strong>500</strong></span><strong><br />
oshell.sendkeys &#8220;</strong><span style="color: #993300;"><strong>net stop</strong></span><strong> &#8220;&#8221;</strong><span style="color: #993300;"><strong>Your service name here</strong></span><strong>&#8220;&#8221;"+(&#8221;{</strong><span style="color: #993300;"><strong>Enter</strong></span><strong>}&#8221;)<br />
wscript.sleep </strong><span style="color: #993300;"><strong>5000</strong></span><strong><br />
oshell.sendkeys &#8220;</strong><span style="color: #993300;"><strong>net start</strong></span><strong> &#8220;&#8221;</strong><span style="color: #993300;"><strong>Your service name here</strong></span><strong>&#8220;&#8221;"+(&#8221;{</strong><span style="color: #993300;"><strong>Enter</strong></span><strong>}&#8221;)<br />
wscript.sleep </strong><span style="color: #993300;"><strong>5000</strong></span><strong><br />
oshell.sendkeys &#8220;</strong><span style="color: #993300;"><strong>exit</strong></span><strong>&#8220;+(&#8221;{</strong><span style="color: #993300;"><strong>Enter</strong></span><strong>}&#8221;)</strong></p>
<p><strong> set oshell = nothing</strong></p>
<p><strong> WScript.Quit</strong></p>
<p>`<br />
<a href="http://www.all1press.com" target="_blank">http://www.all1press.com</a></p>
<p><a href="http://www.all1tunes.com" target="_blank">http://www.all1tunes.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/restart-windows-service-vbscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to restart a GSM Modem using VBScript-</title>
		<link>http://www.all1sourcetech.com/restart-gsm-modem-vbscript/</link>
		<comments>http://www.all1sourcetech.com/restart-gsm-modem-vbscript/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 10:38:30 +0000</pubDate>
		<dc:creator>Suzanne</dc:creator>
				<category><![CDATA[Editorial]]></category>
		<category><![CDATA[Purely Technical]]></category>
		<category><![CDATA[GSM]]></category>
		<category><![CDATA[modem]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[Script code]]></category>
		<category><![CDATA[VBScript]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=988</guid>
		<description><![CDATA[Now you can restart a GSM Modem with the use of VBScript-
1. Copy the script code and save as a .vbs file.
2. Open hyperterminal and setup the modem settings, for this example save the hyperterminal file as c:\example\example.ht
3. Add the below vbs file to your c:\program Files\Windows NT directory and execute.
Important: If you saved the [...]]]></description>
			<content:encoded><![CDATA[<p>Now you can restart <strong>a GSM Modem</strong> with the use of VBScript-</p>
<p>1. Copy the <a href="http://www.all1tunes.com" target="_blank">script code</a> and save as a <strong>.vbs file</strong>.<br />
2. Open hyperterminal and setup the <a href="http://www.all1press.com" target="_blank">modem</a> settings, for this example save the hyperterminal file as <strong>c:\example\example.ht</strong><br />
3. Add the below vbs file to your <strong>c:\program Files\Windows NT directory </strong>and execute.</p>
<p>Important: If you saved the .ht as anything other than example.ht in c:\example rename the file in script below as well.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Set oshell = createobject(&#8221;Wscript.Shell&#8221;)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">oshell.run&#8221;cmd.exe&#8221;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">wscript.sleep 500</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">oshell.sendkeys &#8220;hypertrm.exe c:\example\example.ht&#8221;+(&#8221;{Enter}&#8221;)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">wscript.sleep 1500</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">oshell.sendkeys &#8220;at{+}cfun=1&#8243; + (&#8221;{Enter}&#8221;)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">wscript.sleep 4000</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">oshell.sendkeys&#8221;at&#8221; + (&#8221;{Enter}&#8221;)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">wscript.sleep 1500</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">oshell.sendkeys &#8220;at{+}cfun=1&#8243; + (&#8221;{Enter}&#8221;)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">wscript.sleep 4000</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">oshell.sendkeys&#8221;at&#8221; + (&#8221;{Enter}&#8221;)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">wscript.sleep 1500</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">oshell.sendkeys&#8221;%f&#8221;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">wscript.sleep 1500</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">oshell.sendkeys&#8221;x&#8221;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">wscript.sleep 1500</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">oshell.sendkeys(&#8221;{Enter}&#8221;)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">wscript.sleep 1500</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">oshell.sendkeys&#8221;exit&#8221;+(&#8221;{Enter}&#8221;)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 450px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">set oshell = nothing</div>
<p><strong>Set oshell = createobject(&#8221;Wscript.Shell&#8221;)</strong><br />
     <strong> oshell.run&#8221;cmd.exe&#8221;</strong><br />
     <strong> wscript.sleep 500</strong><br />
     <strong> oshell.sendkeys &#8220;hypertrm.exe c:\example\example.ht&#8221;+(&#8221;{Enter}&#8221;)</strong><br />
     <strong> wscript.sleep 1500</strong><br />
     <strong> oshell.sendkeys &#8220;at{+}cfun=1&#8243; + (&#8221;{Enter}&#8221;)</strong><br />
     <strong> wscript.sleep 4000</strong><br />
     <strong> oshell.sendkeys&#8221;at&#8221; + (&#8221;{Enter}&#8221;)</strong><br />
     <strong> wscript.sleep 1500</strong><br />
     <strong> oshell.sendkeys &#8220;at{+}cfun=1&#8243; + (&#8221;{Enter}&#8221;)</strong><br />
     <strong> wscript.sleep 4000</strong><br />
     <strong> oshell.sendkeys&#8221;at&#8221; + (&#8221;{Enter}&#8221;)</strong><br />
     <strong> wscript.sleep 1500</strong><br />
     <strong> oshell.sendkeys&#8221;%f&#8221;</strong><br />
     <strong> wscript.sleep 1500</strong><br />
     <strong> oshell.sendkeys&#8221;x&#8221;</strong><br />
     <strong> wscript.sleep 1500</strong><br />
     <strong> oshell.sendkeys(&#8221;{Enter}&#8221;)</strong><br />
     <strong> wscript.sleep 1500</strong><br />
     <strong> oshell.sendkeys&#8221;exit&#8221;+(&#8221;{Enter}&#8221;)</strong><br />
     <strong> set oshell = nothing</strong></p>
<p><a href="http://www.all1social.com" target="_blank">http://www.all1social.com</a><br />
<a href="http://www.all1martpro.com" target="_blank">http://www.all1martpro.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/restart-gsm-modem-vbscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Tools: Haml 2.3.0</title>
		<link>http://www.all1sourcetech.com/html-tools-haml-230/</link>
		<comments>http://www.all1sourcetech.com/html-tools-haml-230/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 10:54:11 +0000</pubDate>
		<dc:creator>Suzanne</dc:creator>
				<category><![CDATA[Purely Technical]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[Haml 2.3.0]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[markup]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=946</guid>
		<description><![CDATA[Haml 2.3.0 is a markup language, which is used to describe the HTML of any web document easily and simply, without the use of inline code.
It is compiled into XHTML, similarly to ERB, and attempts to fix many flaws in templating engines like explicitly coding HTML into the template.
Haml itself is a description of the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Haml 2.3.0</strong> is a <a href="http://www.all1martpro.com" target="_blank">markup</a> language, which is used to describe the HTML of any web document easily and simply, without the use of <a href="http://www.all1social.com" target="_blank">inline code</a>.</p>
<p>It is compiled into <strong>XHTML</strong>, similarly to ERB, and attempts to fix many flaws in templating engines like explicitly <strong>coding HTML into the template</strong>.</p>
<p>Haml itself is a description of the HTML, with code to generate <a href="http://www.all1press.com" target="_blank">dynamic content</a>. And it functions as a replacement for inline <a href="http://www.all1tunes.com" target="_blank">page templating systems</a> such as PHP, ASP, and ERB.</p>
<p>Example:<br />
The <strong>#foo Hello World! line of code</strong> will output this HTML line of code: <strong>&lt;div id=&#8221;foo&#8221;&gt;Helo World!&lt;/div&gt;</strong><strong><br />
</strong></p>
<p>Automatically, Haml handled the end tag and tag defining. For CSS stylings, SASS does the same thing as Haml does for HTML. SASS is bundled with Haml by default.</p>
<p>Platform: Windows/ Linux/ Mac OS/ BSD/ Solaris<br />
Language: Ruby</p>
<p><a href="http://www.all1martpro.com" target="_blank">http://www.all1martpro.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/html-tools-haml-230/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache Commons Transaction 1.2</title>
		<link>http://www.all1sourcetech.com/apache-commons-transaction-12/</link>
		<comments>http://www.all1sourcetech.com/apache-commons-transaction-12/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 10:18:50 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[New Product Release]]></category>
		<category><![CDATA[Purely Technical]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Apache Transaction 1.2]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Java development]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=939</guid>
		<description><![CDATA[Apache Commons Transaction 1.2 has been updated for download.
Apache Commons Transaction 1.2 is the Java library, which contains implementations for multi level locks, transactional collections and transactional file access
Commons Transaction aims at providing standardized, lightweight, well tested and efficient implementations of utility classes commonly used in transactional Java development.

Initially there are implementations for multi level [...]]]></description>
			<content:encoded><![CDATA[<p>Apache Commons Transaction 1.2 has been updated for download.</p>
<p><a href="http://www.all1martpro.com" target="_blank">Apache Commons Transaction 1.2</a> is the Java library, which contains implementations for multi level locks, transactional collections and transactional file access</p>
<p>Commons Transaction aims at providing standardized, lightweight, well tested and efficient <a href="http://www.all1press.com" target="_blank">implementations of utility</a> classes commonly used in transactional <a href="http://www.all1social.com" target="_blank">Java development</a>.</p>
<p><img class="alignnone" src="http://webscripts.softpedia.com/thumbnails/Apache-Commons-Transaction-thumb.png" alt="Apache Commons Transaction thumb Apache Commons Transaction 1.2" width="160" height="110" title="Apache Commons Transaction 1.2" /></p>
<p>Initially there are implementations for multi level locks, transactional collections and transactional file access.</p>
<p>There may be additional implementations when the common need for them becomes obvious, however, the complete component shall remain compatible to JDK1.2 and should have minimal dependencies.</p>
<p>Platform: Windows / Linux / <a href="http://www.all1tunes.com" target="_blank">Mac OS</a> / BSD / Solaris</p>
<p>Language: Java</p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/apache-commons-transaction-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP Google-buzz v2.1.0</title>
		<link>http://www.all1sourcetech.com/wp-googlebuzz/</link>
		<comments>http://www.all1sourcetech.com/wp-googlebuzz/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 10:54:32 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[New Product Release]]></category>
		<category><![CDATA[Purely Technical]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Buzz]]></category>
		<category><![CDATA[insertion of code]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=925</guid>
		<description><![CDATA[ Beautiful Google buzz integration to wordpress + 7 different admin panel options (Settings -&#62; WP Google-buzz) + 14 diff button images + mouse over effects.
Automatically displays Google Buzz button for every post and pages. Google Buzz is shaping up to be an interesting new way to share content with your Gmail friends, so why [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #000080;"><strong> Beautiful </strong></span><a href="http://www.all1martpro.com" target="_blank"><span style="color: #000080;"><strong><span style="color: #0000ff;">Google buzz</span></strong></span></a><span style="color: #000080;"><strong> integration</strong></span> to wordpress <span style="color: #008000;">+ 7 different admin panel options (Settings -&gt; WP Google-buzz) + 14 diff button images + mouse over effects</span>.</p>
<p>Automatically displays Google <a href="http://www.all1tunes.com" target="_blank">Buzz button</a> for every post and pages. Google Buzz is shaping up to be an interesting new way to share content with your Gmail friends, so why not have a <a href="http://www.all1social.com" target="_blank">button for sharing</a> blog posts/pages to the service? To make it work, you&#8217;ll need to make sure you&#8217;ve set up Google Reader and included that in your Connected Sites on Buzz. Ultimate all in one Google Buzz buttons. Beautiful popup window option included.</p>
<p><strong>Features-</strong></p>
<ul>
<li>Show Google-buzz button before/after post content</li>
<li>Manual insertion of code: Use this: <span style="color: #008000;">&lt;?php if(function_exists(&#8217;add_wp_google_buzz&#8217;)) { add_wp_google_buzz(); } ?&gt;</span></li>
<li>13 different beautiful Google Buzz button images</li>
<li><span style="color: #008000;">rel=&#8221;nofollow&#8221;</span> option for buzz links</li>
<li><span style="color: #008000;">Show/Hide option</span> to show Google Buzz button on page</li>
<li><span style="color: #008000;">float = left/right</span> option</li>
<li>NEW: Popup window option</li>
</ul>
<p><a href="http://www.all1martpro.com" target="_blank">http://www.all1martpro.com</a></p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/wp-googlebuzz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nuance acquires MacSpeech for undisclosed amount</title>
		<link>http://www.all1sourcetech.com/nuance-acquires-macspeech-undisclosed-amount/</link>
		<comments>http://www.all1sourcetech.com/nuance-acquires-macspeech-undisclosed-amount/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 10:47:03 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Product Reviews]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[24X7 Support]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[LAMP-Linux]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[SugarCRM]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=827</guid>
		<description><![CDATA[Nuance Communications Inc., the speech-recognition software maker, said Tuesday that it has acquired MacSpeech, which makes speech-recognition software for Apple Inc.&#8217;s Macintosh computers, for an undisclosed amount.
San Francisco-based MacSpeech makes general-use programs and ones designed specifically for the medical and legal fields.
According to Nuance, which already makes a dictation program for Apple&#8217;s iPhone, the deal [...]]]></description>
			<content:encoded><![CDATA[<p>Nuance Communications Inc., the speech-recognition software maker, said Tuesday that it has acquired MacSpeech, which makes <a href="http://www.all1Press.com" target="_blank">speech-recognition software</a> for Apple Inc.&#8217;s Macintosh computers, for an undisclosed amount.</p>
<p>San Francisco-based MacSpeech makes general-use programs and ones designed specifically for the medical and legal fields.</p>
<p>According to Nuance, which already makes a dictation program for <a href="http://www.all1martpro.com" target="_blank">Apple&#8217;s iPhone</a>, the deal will help it produce its flagship Dragon Naturally Speaking desktop software for Macs.</p>
<p>Shares of Nuance rose 18 cents, or 1.3 percent, to close at $14.63.</p>
<p><a href="http://www.all1tunes.com" target="_blank">http://www.all1tunes.com</a></p>
<p><a href="http://www.all1social.com" target="_blank">http://www.all1social.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/nuance-acquires-macspeech-undisclosed-amount/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sonne DVD Burner v4.1.0.2036</title>
		<link>http://www.all1sourcetech.com/sonne-dvd-burner-v4102036/</link>
		<comments>http://www.all1sourcetech.com/sonne-dvd-burner-v4102036/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 12:25:16 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[New Product Release]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[business applications]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[Sonne DVD]]></category>
		<category><![CDATA[SQL Database Services]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=821</guid>
		<description><![CDATA[
Sonne DVD Burner is an almighty DVD burner designed to meet all your needs in burning video, ISO Image file and VIDEO_TS to DVD disc and burning all files to data disc, creating DVD from other video files. For the more, it can capture videos to burn or create to DVD. It s necessary to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" src="http://lookpic.com/i/139/h0b2VcCL.jpeg" alt=" Sonne DVD Burner v4.1.0.2036" width="345" height="253" title="Sonne DVD Burner v4.1.0.2036" /></p>
<p><strong>Sonne DVD Burner</strong> is an almighty <strong>DVD burner</strong> designed to meet all your needs in burning video, ISO Image file and VIDEO_TS to DVD disc and burning all files to data disc, creating DVD from other video files. For the more, it can capture videos to burn or create to DVD. It s necessary to add an intact capture <a href="http://www.all1social.com" target="_blank">function to meet users</a> need. Users can easily capture video or image from other devices, DV and TV Tuner. Auto shot, overlay, audio settings volume and balance can be adjusted by easy to use buttons&#8230; [/center]</p>
<p><strong>Key Function:</strong></p>
<ul>
<li>Create a DVD disc with DVD menu.</li>
<li>Capture video or image from other devices like USB webcams, TV tuner and DV in real time.</li>
<li>Snapshot pictures with hotkeys.</li>
<li>Set properties for each capture device.</li>
<li>Burn data to disc.</li>
<li>Burn DVD (VIDEO_TS) folders to DVD disc.</li>
<li>Burn video files to DVD disc without menu.</li>
<li>Show information about recorder.</li>
</ul>
<p><strong>How to Create DVD</strong></p>
<p>Sonne DVD Burner can let you directly create DVD from other video files.</p>
<ul>
<li>Step 1: Define the desired DVD mode as pagination menu or chapters menu.</li>
<li>Step 2: Define a template for your DVD from the template list.</li>
<li>Step 3: Input your desired video files.</li>
<li>Step 4: Click Create button, a dialog will pop up. You can define the DVD Output Path as your like. <a href="http://www.all1martpro.com" target="_blank">Start the process</a> with Start button.</li>
<li>Step 5: Click Burn button to burn the newly created DVD folder or others, relative settings interface will pop up.</li>
<li>Step 6: Click Start to start burning.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/sonne-dvd-burner-v4102036/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Repairsoft Error Repair Professional v4.1.4 WORKING-BEAN</title>
		<link>http://www.all1sourcetech.com/repairsoft-error-repair-professional-v414-workingbean/</link>
		<comments>http://www.all1sourcetech.com/repairsoft-error-repair-professional-v414-workingbean/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 11:52:10 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Microsoft Technology]]></category>
		<category><![CDATA[New Product Release]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[32-bit version]]></category>
		<category><![CDATA[error identification]]></category>
		<category><![CDATA[Error Repair Professional]]></category>
		<category><![CDATA[installing software]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Repairsoft]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=808</guid>
		<description><![CDATA[
Now, your PC will operate smoothly by using Error Repair Professional to identify and repair hidden errors inside your PC. With only a single click, it will scan your PC for any invalid registry entries and provides a list of the hidden errors found. You can then choose to selectively clean each item or automatically [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" src="http://img13.nnm.ru/6/1/b/0/a/61b0a52876f2178cd61a33117ee405e9_full.jpg" alt="61b0a52876f2178cd61a33117ee405e9 full Repairsoft Error Repair Professional v4.1.4 WORKING BEAN" width="474" height="388" title="Repairsoft Error Repair Professional v4.1.4 WORKING BEAN" /></p>
<p>Now, your PC will operate smoothly by using <a href="http://www.all1Press.com" target="_blank">Error Repair Professional</a> to identify and repair hidden errors inside your PC. With only a single click, it will scan your PC for any invalid registry entries and provides a list of the hidden errors found. You can then choose to selectively clean each item or automatically repair them all.</p>
<p><strong>Features:</strong></p>
<p><strong>About Error Repair Professional</strong><br />
Windows Registry is the nerve center of your PC and problems with the Windows Registry are a common cause of Windows crashes and error messages. These problems can occur for many reasons including uninstalling <a href="http://www.all1tunes.com" target="_blank">software</a> with poor un-installation routines, by missing or corrupt hardware drivers, improperly deleting files and orphaned startup programs. By using Error Repair Professional regularly to fix error in Windows registry, your system should not only be more stable but it will also help Windows boot faster.</p>
<p><strong>How Error Repair Professional works?</strong><br />
Error Repair Professional via registry cleaner that uses high-performance error identification algorithms to quickly identify missing and invalid references in your Windows registry. It will safely clean and repair Windows registry problems with a few simple clicks and enable you to enjoy a cleaner and more efficient PC. Error Repair Professional will guarantee that you <a href="http://www.all1social.com" target="_blank">eliminate errors</a> in the nerve center of your PC.</p>
<p><strong>What’s Windows Registry?</strong><br />
The Windows registry is a database which stores settings and options for the operating system for <a href="http://www.all1martpro.com" target="_blank">Microsoft Windows</a> 32-bit versions, 64-bit versions. It contains information and settings for all the hardware, software, users, and preferences of the PC. Whenever a user makes changes to “Control Panel” settings, or file associations, system policies, or installed software, the changes are reflected and stored in the registry.</p>
<p><a href="http://www.all1martpro.com" target="_blank">http://www.all1martpro.com</a></p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/repairsoft-error-repair-professional-v414-workingbean/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ametrine Audio 2010 Fire and Ice Update &#8211; ASSiGN</title>
		<link>http://www.all1sourcetech.com/ametrine-audio-2010-fire-and-ice-update-assign/</link>
		<comments>http://www.all1sourcetech.com/ametrine-audio-2010-fire-and-ice-update-assign/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 11:36:54 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Editorial]]></category>
		<category><![CDATA[Purely Technical]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[LAMP-Linux]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[SugarCRM]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=783</guid>
		<description><![CDATA[
Ametrine Audio has announced the release of Fire and Ice, a new synthesizer powered by the Wusik-Engine. The concept was to make a synth with two personalities: The &#8220;Fire&#8221; section covers basses, stab, synth and lead sounds, whilst the &#8220;Ice&#8221; section features pads, keys, organs, bell-tones and arps. 160 main presets are included with 250 [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="Ametrine Audio 2010 Fire and Ice Update" src="http://imgcentre.com/img/uploads/big/04a886b3a8.jpeg" alt=" Ametrine Audio 2010 Fire and Ice Update   ASSiGN" width="327" height="281" /></p>
<p><strong>Ametrine Audio</strong> has announced the release of Fire and Ice, a new synthesizer powered by the Wusik-Engine. The concept was to make a synth with two personalities: The &#8220;Fire&#8221; section covers basses, stab, synth and lead sounds, whilst the &#8220;Ice&#8221; section features pads, keys, organs, bell-tones and arps. 160 main presets are included with 250 variations. Two brand new skins have also been developed for the Fire and Ice.</p>
<p>Fire and IceFire and Ice is available for <a href="http://www.all1Press.com" target="_blank">Windows</a> in the VST format.</p>
<p><strong>Summary:</strong></p>
<ul>
<li>Powered by the Wusik-Engine.</li>
<li>160 main presets with 250 variations.</li>
<li>Custom made Bass, Stab, Synth, Lead, pads, Keys, Organs, Bell-tones and Arpeggio sounds:</li>
</ul>
<p>-Bass and Stabs 44<br />
-Synth and Leads 23<br />
-Arp and Wave-sequences 20<br />
-Pads and Strings 30<br />
-Bell-tones 21<br />
-Keys and Organs 22</p>
<ul>
<li>Windows Platform Only</li>
</ul>
<p><strong>System requirements:</strong></p>
<p>Windows 95/98/ME/2000/NT/XP/Vista, 128 MB RAM Recommended.</p>
<p>4.2 GB free hard disc space, VST compatible host <a href="http://www.all1martpro.com" target="_blank">software</a>.</p>
<p>(Works Great in Logic Audio 5.5)</p>
<p><strong>Install Note-</strong></p>
<ul>
<li>Run WusikStation or FireAndIce</li>
<li>Drug&amp;Drop WusikPACK file to it.</li>
</ul>
<p><a href="http://www.all1Press.com" target="_blank">http://www.all1Press.com</a></p>
<p><a href="http://www.all1tunes.com" target="_blank">http://www.all1tunes.com</a></p>
<p><a href="http://www.all1social.com" target="_blank">http://www.all1social.com</a></p>
<p><a href="http://www.all1martpro.com" target="_blank">http://www.all1martpro.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/ametrine-audio-2010-fire-and-ice-update-assign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fashion Meets Technology: New Tech Could Change Your Wardrobe</title>
		<link>http://www.all1sourcetech.com/fashion-meets-technology-new-tech-could-change-your-wardrobe/</link>
		<comments>http://www.all1sourcetech.com/fashion-meets-technology-new-tech-could-change-your-wardrobe/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 11:08:41 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Technical News]]></category>
		<category><![CDATA[Customized solutions]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[fashion week]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[nanotubes]]></category>
		<category><![CDATA[Smartphones]]></category>
		<category><![CDATA[Software development]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=776</guid>
		<description><![CDATA[Fashion Week is now underway, and new developments could give designers more options when it comes to high-tech fashion. Some previous attempts at wearable electronics, such as Levi’s iPod Jeans, were less than successful, but recent developments could make such attire more popular.
Fabric Batteries
Stanford University researchers have developed a way to effectively make batteries out [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Fashion Week is now underway</strong>, and new developments could give designers more options when it comes to <a href="http://www.all1Press.com" target="_blank">high-tech fashion</a>. Some previous attempts at wearable electronics, such as Levi’s iPod Jeans, were less than successful, but recent developments could make such attire more popular.</p>
<p><strong>Fabric Batteries</strong></p>
<p>Stanford University researchers have developed a way to effectively make batteries out of fabric. The method used is similar to the one developed to make batteries out of paper. It’s pretty out-there, but it could be the first step in developing clothing that could be used to charge portable electronics like MP3 players or smartphones.</p>
<p>The process involves coating polyester fibers with a special &#8220;ink&#8221; made of single-walled carbon nanotubes. These nanotubes are electrically conductive microscopic carbon fibers, and are only 1/50,000 the width of single human hair.</p>
<p>After coating, the fabrics become porous conductors that can conduct electricity. These treated electronic textiles should be as flexible and elastic as untreated cotton and polyester. The conductive textiles retain their electronic capabilities even after multiple laundry cycles.</p>
<p>The next step is to replace the expensive carbon nanotubes with the less costly graphene, another form of carbon that comes from graphite oxide. No mention on whether or not the carbon <a href="http://www.all1social.com" target="_blank">nanotube</a> or graphene “inks” can be made available in colors other than black.</p>
<p><strong>Flexible, Wearable Displays</strong></p>
<p>Recent research in stamping inorganic LEDs into fabrics introduces more possibilities to make light-up clothing similar to Phillips’ Lumalive products. Inorganic LEDs usually need to be cut and assembled for use in devices like cell phones. But newer methods allows them to be fitted onto all kinds of materials including rubber, plastic, and glass. Remember the light-up shoe craze from several years back? Imagine pants that lit up as you walked. Not appealing? Tell that to your kids.</p>
<p>These new developments should give designers more options. For example, the electronic Rock Guitar Shirt and Rock Drums Shirt at thinkgeek.com, could be made even more appealing without having to carry around a battery pack for your shirt. Other possibilities might be <a href="http://www.all1martpro.com" target="_blank">electronic billboards</a> instead of logos on shirts, or an animated version of your favorite “I’m With Stupid” type shirt.</p>
<p>Textile batteries can be practical too. Heated clothing is one possible application: Textile batteries could allow such clothing articles&#8211;jackets, gloves, pants, and so forth that are similar in nature to an electric blanket&#8211;to power themselves instead of relying on a separate battery.</p>
<p>Joggers and athletes could also benefit from power-on-the-go clothing: pedometers, heart monitors and such could be incorporated into your clothing, for example.</p>
<p>What kinds of new fashions would you guys like to see? I’m fine with any technology that doesn’t point us towards those stupid Battlestar Galactica tanktops.</p>
<p>Source: <a href="http://news.yahoo.com" target="_blank">http://news.yahoo.com</a></p>
<p><a href="http://www.all1tunes.com" target="_blank">http://www.all1tunes.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/fashion-meets-technology-new-tech-could-change-your-wardrobe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad costs $229 to produce, says iSuppli</title>
		<link>http://www.all1sourcetech.com/ipad-costs-229-to-produce-says-isuppli/</link>
		<comments>http://www.all1sourcetech.com/ipad-costs-229-to-produce-says-isuppli/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 11:18:26 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[New Product Release]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[9.7-inch touchscreen]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iSuppli]]></category>
		<category><![CDATA[LAMP-Linux]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[SugarCRM]]></category>
		<category><![CDATA[Virtual teardown]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=530</guid>
		<description><![CDATA[
The forthcoming iPad tablet computer of Apple Inc, it will cost as little as $229.35 for the company to produce, according to an estimate on Wednesday from research house iSuppli
The group conducted what it called a &#8220;virtual teardown&#8221; of the iPad, since the device is not yet available and component suppliers have not been announced.
Apple&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="iPad" src="http://www.iphonesavior.com/images/2008/05/14/ipad_touch_mock_up.jpg" alt="ipad touch mock up iPad costs $229 to produce, says iSuppli" width="350" height="265" /></p>
<p>The forthcoming <a href="http://www.all1Press.com" target="_blank"><strong>iPad tablet</strong></a><strong> computer of Apple Inc</strong>, it will cost as little as $229.35 for the company to produce, according to an estimate on Wednesday from research house iSuppli</p>
<p>The group conducted what it called a &#8220;virtual teardown&#8221; of the iPad, since the device is not yet available and component suppliers have not been announced.</p>
<p>Apple&#8217;s iPad that resembles a large iPhone and uses the same <a href="http://www.all1social.com" target="_blank">operating system</a> will go on sale as early as next month, as the company looks to define a new category of mobile devices.</p>
<p>For the $499 iPad &#8212; the lowest-cost model, which features 16 gigabytes of flash memory &#8212; iSuppli estimated the total materials cost at $219.35, with a $10 manufacturing cost.</p>
<p>The priciest <a href="http://www.all1martpro.com" target="_blank">iPad</a> will cost around $335 to produce, while the mid-range model will cost roughly $287, according to the group.</p>
<p>In the iPad, the most expensive component is the 9.7-inch display and touchscreen, at an estimated cost of $80, according to the estimate.</p>
<p>Analysts expect Apple to ship somewhere between 2 million and 5 million iPad units in the first year.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/ipad-costs-229-to-produce-says-isuppli/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intel rolls out oft-delayed Tukwila chip</title>
		<link>http://www.all1sourcetech.com/intel-rolls-out-oft-delayed-tukwila-chip/</link>
		<comments>http://www.all1sourcetech.com/intel-rolls-out-oft-delayed-tukwila-chip/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 11:42:10 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Technical News]]></category>
		<category><![CDATA[Customized solutions]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[Software development]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=479</guid>
		<description><![CDATA[Today Intel took the wrappers off its high-end Itanium processor after about a year of delays, code-named Tukwila.
Originally, the new Itanium 9300 processor was slated to release early 2009 but that timetable slipped twice last year. The timing turned out to benefit Intel a bit as Tukwila comes out the same day as IBM&#8217;s long-anticipated [...]]]></description>
			<content:encoded><![CDATA[<p>Today Intel took the wrappers off its high-end Itanium processor after about a year of delays, code-named Tukwila.</p>
<p>Originally, the new Itanium 9300 processor was slated to release early 2009 but that timetable slipped twice last year. The timing turned out to benefit Intel a bit as Tukwila comes out the same day as IBM&#8217;s long-anticipated <a href="http://www.all1tunes.com" target="_blank">new Power7 processor</a> .</p>
<p>An analyst at Gabriel Consulting Group, Dan Olds said its good that Intel finally stepped up and delivered Tukwila and that the chip is shipping with the promised tweaks that caused the delays. &#8220;However, competitors haven&#8217;t been standing still. IBM had two revs of its Power processor during this time, with the second rev coming out today. So, Intel is still playing catch-up in this market.&#8221;</p>
<p>Olds added that IBM has moved a step ahead of Intel with new Power processor family. He said, the rivalry in the enterprise space is getting hotter and hotter. And with this between Intel and IBM, it&#8217;s getting interesting.</p>
<p>Intel officials today noted that the Itanium 9300 chip has two billion transistors and four cores, and that&#8217;s up from two cores in the previous Itanium iteration. It also has eight threads per processor. And the chip maker noted that, compared to the last Itanium release, this new processor has up to 800 percent the <a href="http://www.all1social.com" target="_blank">interconnect</a> bandwidth and up to 500 percent the memory bandwidth.</p>
<p>According to Olds, the computer builders and corporate IT shops are likely more interested in the capabilities of the Itanium 9300 processor family than the reasons for the delays &#8212; that Intel changed its design mid-stream. He also added that the Itanium line has been rife with delays from the start, which has frustrated the hardware OEMs that have relied on the chip for their systems. &#8220;However, Intel discussed a four-year roadmap for Itanium today, saying that they&#8217;d be delivering new chips about every two years. It&#8217;s important that Intel hit those milestones.&#8221;</p>
<p>Intel today said it&#8217;s committed to putting out at least two more generations of Itanium &#8212; one in two years and the next in four years.</p>
<p>The code name for the next Itanium processor, Poulson is expected to add an advanced multi-core architecture, instruction-level and hyper-threading enhancements and new stability features, the chip maker said.</p>
<p>Intel also pointed that it&#8217;ll refresh its two-socket systems with Westmere EX processors later this quarter and it&#8217;ll launch an embedded storage chip, code-named Jasper Forest, in the next several days. Intel also noted that it&#8217;ll launch an eight-core <a href="http://www.all1martpro.com" target="_blank">Nehalem EX chip</a> later this quarter.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/intel-rolls-out-oft-delayed-tukwila-chip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LG, Samsung Go Social with Latest Handsets</title>
		<link>http://www.all1sourcetech.com/lg-samsung-go-social-with-latest-handsets/</link>
		<comments>http://www.all1sourcetech.com/lg-samsung-go-social-with-latest-handsets/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 11:34:56 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[New Product Release]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[business applications]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[SQL Database Services]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=477</guid>
		<description><![CDATA[On Tuesday, the two South Korea’s biggest cell phone makers previewed handsets that they plan to unveil at next week’s Mobile World Congress exhibition in Barcelona.
Both phones feature full-screen touch panels on their face, Wi-Fi and close links with social networking services.
The Samsung Monte is an extension of the company&#8217;s S-series of phones and includes [...]]]></description>
			<content:encoded><![CDATA[<p>On Tuesday, the two South Korea’s biggest cell phone makers previewed handsets that they plan to unveil at next week’s Mobile World Congress exhibition in Barcelona.</p>
<p>Both phones feature full-screen touch panels on their face, Wi-Fi and close links with <a href="http://www.all1Press.com" target="_blank">social networking services</a>.</p>
<p>The Samsung Monte is an extension of the company&#8217;s S-series of phones and includes applications for <a href="http://www.all1social.com" target="_blank">Facebook</a> and MySpace, and widgets for access to Twitter, Bebo and several instant messaging networks.</p>
<p>The front of the phone is dominated by a 3-inch display with full-screen touch panel through which all the main user interaction takes place.</p>
<p>A GPS receiver hooks into Google Latitude, which allows you to share your position with friends on a map, and provides location data that is embedded with photos taken with the phone&#8217;s 3.2-megapixel camera. Two applications, Exchange ActiveSync and Google Sync, are included to synchronize e-mail, contacts and other data with a PC.</p>
<p>LG&#8217;s new handset, the GD880 Mini, connects to Facebook and Twitter and a social network feed function combines updates from different services in a single stream.</p>
<p>In some areas the LG Mini outpaces the Samsung Monte: the screen is slightly bigger at 3.2 inches and the camera offers a higher resolution of 5 megapixels. Other features include <a href="http://www.all1martpro.com" target="_blank">high-speed HSDPA networking</a> and A-GPS (assisted GPS).</p>
<p>According to LG, the Mini will be launched in Europe in March and later in other markets. Samsung didn&#8217;t provide launch details for the Monte. </p>
<p>Both the companies are yet to announce prices for the new handsets.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/lg-samsung-go-social-with-latest-handsets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenOffice-based Symphony 3.0 beta adds VB support</title>
		<link>http://www.all1sourcetech.com/openoffice-based-symphony-3-0-beta-adds-vb-support/</link>
		<comments>http://www.all1sourcetech.com/openoffice-based-symphony-3-0-beta-adds-vb-support/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 11:25:45 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Opensource]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[application solutions]]></category>
		<category><![CDATA[data management solutions]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[infrastructure solutions]]></category>
		<category><![CDATA[it management solutions]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=461</guid>
		<description><![CDATA[At Microsoft Office, IBM&#8217;s Lotus division has taken another stab, releasing a beta 2 version of Symphony 3.0, its free suite of productivity applications. 
Beta-based on OpenOffice 3.x. that released on Thursday, is the first version of Symphony. Users have been asking the company to make Symphony&#8217;s features more competitive with Microsoft Office, the dominant [...]]]></description>
			<content:encoded><![CDATA[<p>At Microsoft Office, IBM&#8217;s Lotus division has taken another stab, releasing a beta 2 version of Symphony 3.0, its free suite of productivity applications. </p>
<p>Beta-based on OpenOffice 3.x. that released on Thursday, is the first version of Symphony. Users have been asking the company to make Symphony&#8217;s features more competitive with Microsoft Office, the dominant productivity suite among corporate users. Lotus claims more than 12 million users of Symphony, which is available in 28 languages.</p>
<p>Jeanette Barlow, manager of Lotus Symphony, said the <a href="http://www.all1Press.com" target="_blank">OpenOffice 3 code</a> means we pick up a lot of improvements both from the ODF file format as well as the core code base. She says it is the most significant step forward since the first Symphony beta was released in 2007.</p>
<p>IBM Lotus, along with many others, is trying to provide alternatives to Microsoft Office, which has dominated for years. With companies segmenting their user base and assessing needs, many are looking at less expensive alternatives to Office.</p>
<p>One corporate hook in <a href="http://www.all1social.com" target="_blank">Symphony 3.0</a> is support of VB Marcos, which lets users run on Symphony customized applications built on Microsoft Office software.</p>
<p>Also new is support for ODF 1.2, which enhances existing Symphony access features for Word 2007, and audio/visual features that let users add content directly to slides and documents. Lotus also has added digital signature support, editing features, graphic objects rendering, richer Java and LotusScript APIs, and an add-on installer for Notes.</p>
<p>It also continues support for the .docx format that was at the heart of the i4i patent infringement suit against Microsoft.</p>
<p>Symphony 3.0 represents the first push from Lotus to update its Symphony tools, and the company plans to follow with two more releases in the coming 12 to 14 months. IBM Lotus plans to follow up Vienna with a &#8220;feature enablement and maintenance&#8221; update code-named Amsterdam by the October. The release will further refine VBA macros and Office 2007 support and include document filters for the HTML file format. The release also will include enhancements to APIs for presentation and documents, templates for business content, and central management tweaks centered on preference, policy and deployment.</p>
<p>In the first half of 2011, IBM Lotus plans to again update the Symphony suite with more VB macro enhancements, improve links to other <a href="http://www.all1martpro.com" target="_blank">Lotus software</a> such as Foundations and Connections, and add more API enhancements.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/openoffice-based-symphony-3-0-beta-adds-vb-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Five Benefits of an Open Source Symbian</title>
		<link>http://www.all1sourcetech.com/five-benefits-of-an-open-source-symbian/</link>
		<comments>http://www.all1sourcetech.com/five-benefits-of-an-open-source-symbian/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 10:44:30 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Opensource]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[24X7 Support]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[business applications]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[SQL Database Services]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=457</guid>
		<description><![CDATA[
The Symbian Foundation has given the Symbian mobile operating system a second life, making the smartphone platform open source. The lifeline will revitalize the platform, and has benefits for Nokia, smartphone developers, Symbian handsets, and smartphone users.
With all of the hype and attention devoted to the iPhone, it&#8217;s easy to forget that Symbian is actually [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" src="http://filebox.vt.edu/users/ajohri/toolslab/opensource_logo.gif" alt="opensource logo Five Benefits of an Open Source Symbian" width="280" height="241" title="Five Benefits of an Open Source Symbian" /></p>
<p>The <strong>Symbian Foundation</strong> has given the Symbian mobile operating system a second life, making the <strong>smartphone platform open source</strong>. The lifeline will revitalize the platform, and has benefits for Nokia, smartphone developers, Symbian handsets, and smartphone users.</p>
<p>With all of the hype and attention devoted to the iPhone, it&#8217;s easy to forget that Symbian is actually the leading smartphone operating system in the world. Symbian has nearly as much market share as the rest of its competitors combined&#8211;including the iPhone, with more than 330 million Symbian smartphones in use.</p>
<p>If Symbian is so dominant, why should Nokia spin it off, and why should the Symbian Foundation make it open source? The answer is that the Symbian is yesterday&#8217;s <a href="http://www.all1Press.com" target="_blank">smartphone</a> operating system. It may be dominant, but it’s declining.</p>
<p>Globally, Symbian has a huge footprint, but RIM and Apple have been steadily chipping away at it. It is somewhat geriatric compared with next-generation smartphone operating systems like iPhone and Android.</p>
<p>For the Symbian platform, the move to open source is a good move with benefits at all levels.</p>
<p>Here are five ways an open source Symbian is good for the smartphone platform:</p>
<p>1. Nokia. From the transition to open source, Nokia will be benefited because it pumps new blood into the waning platform without any effort or investment from Nokia.</p>
<p>While Nokia moves on to creating new devices built on its Linux-based Maemo platform, it will still gain a marketing and public relations boost from its relationship with Symbian and its dominant contribution to the development of the smartphone platform.</p>
<p>2. Smartphone Manufacturers. The availability of Symbian as an open source operating system gives smartphone manufacturers an alternative to Google&#8217;s Android. Android has demonstrated that an open source mobile operating system can be a very effective platform&#8211;enabling smartphone vendors to customize the OS, and develop robust devices at a lower cost (or higher profit margin) due to the lack of associated licensing fees.</p>
<p>Some manufacturers may be interested in leveraging an open source platform, yet be reluctant to partner too closely with Google. Even vendors who have embraced Android may be looking for alternatives now that Google has entered the market as a direct competitor with the Nexus One.</p>
<p>3. Developers. Making the source code of the Symbian operating system available as open source opens up a huge market for developers. Symbian will never achieve the rabid success of the <a href="http://www.all1tunes.com" target="_blank">iPhone App Store</a>, but it&#8217;s hard to ignore a market of 330 million potential customers. Just based on economy of scale, even a mediocre Symbian app could be quite lucrative.</p>
<p>4. Businesses. Taking the developers benefit in a different direction, companies of all sizes will benefit from the ability to customize the platform, and develop unique applications to integrate Symbian smartphones with the enterprise, and streamline business processes.</p>
<p>For businesses that are already invested in Symbian-based smartphones, an open source Symbian can extend the useful life of the devices and enable the company to maximize the investment it&#8217;s already made rather than allocating precious budget dollars to smartphone upgrades.</p>
<p>5. Users. The 330 million Symbian users of the world get some new life as well. As developers embrace the <a href="http://www.all1social.com" target="_blank">open source Symbian</a> and begin to create innovative applications for the smartphones, Symbian users will benefit from new features and functionality without having to trade their devices in for an iPhone or a Nexus One.</p>
<p>The transition to open source isn&#8217;t necessarily all wine and roses, though. As different developers take the open source code in different directions, there is a risk of the platform forking and creating some confusion as far as which Symbian will work with which Symbian smartphones.</p>
<p>Making Symbian open source may stop some of the hemorrhaging of market share Symbian has experienced, and it is almost guaranteed to extend the useful life of the platform. However, it is still yesterday&#8217;s <a href="http://www.all1martpro.com" target="_blank">smartphone</a> platform and Symbian&#8217;s days are still numbered&#8211;the number is just higher now.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/five-benefits-of-an-open-source-symbian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft to Drop Linux, Unix Versions of Enterprise Search</title>
		<link>http://www.all1sourcetech.com/microsoft-to-drop-linux-unix-versions-of-enterprise-search/</link>
		<comments>http://www.all1sourcetech.com/microsoft-to-drop-linux-unix-versions-of-enterprise-search/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 11:31:13 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Microsoft Technology]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[24X7 Support]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Customized solutions]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[Software development]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=437</guid>
		<description><![CDATA[Microsoft announced Thursday that it will no longer offer Linux or Unix versions of its enterprise search products after a wave of releases set to ship in the first half of this year.
Bjorn Olstad, CTO for Fast and a Microsoft distinguished engineer, wrote that Microsoft would continue offering and updating standalone versions of the company’s [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft announced Thursday that it will no longer offer Linux or Unix versions of its enterprise search products after a wave of releases set to ship in the first half of this year.</p>
<p>Bjorn Olstad, CTO for Fast and a Microsoft distinguished engineer, wrote that Microsoft would continue offering and updating standalone versions of the company’s ESP platform for Linux and Unix after it bought Fast Search &#038; Transfer in 2008. “Over the last two years, we’ve done just that”, he added.</p>
<p>But the products being released this year will be the last containing a search core compatible with Linux and UNIX, he said. There is logic behind Microsoft&#8217;s decision, according to Olstad.</p>
<p>Microsoft is trying to make the move easier on affected customers, Olstad added.</p>
<p>He stated that they will always interoperate with non-Windows systems on both the front- and back-end. Our search solutions will crawl and index content stored on Windows, Linux, and Unix systems, and our UI controls will work with UI frameworks running on any <a href="http://www.all1social.com" target="_blank">operating system</a>.</p>
<p>In addition, it will support ESP 5.3, the search core for the products that will be released this year, for 10 years. Customers who decide to keep running the core on Unix or Linux can &#8220;add Windows-only innovations or cloud-based services by using a <a href="http://www.all1tunes.com" target="_blank">mixed-platform architecture</a>,&#8221; he said.</p>
<p>Microsoft is also rolling out an &#8220;upgrade program&#8221; that will &#8220;help customers evaluate our hosted solutions and/or a Windows-based deployment.&#8221;</p>
<p>However, &#8220;there&#8217;s no immediate action required as a result of this announcement-and I expect that most of you will stay with your current deployments for some time,&#8221; Olstad added.</p>
<p>According to Jared Spataro, director of enterprise search at Microsoft, a significant number of customers are running Fast on Linux or UNIX. He declined to provide specific figures. Microsoft made the announcement now in order to give those users plenty of time to prepare, he said.</p>
<p>According to Gartner analyst Whit Andrews, Microsoft&#8217;s promises of continued interoperability offer some comfort. &#8220;This doesn&#8217;t mean Microsoft is casting out Linux users from their customer base. There will be people running Fast on Linux right out to the 10-year limit. </p>
<p>Meanwhile, Microsoft&#8217;s announcement raises another question: whether it will continue offering a standalone search product for the long term, given its moves to align the <a href="http://www.all1martpro.com" target="_blank">Fast technology</a> with its Share Point collaboration platform.</p>
<p>According to Spataro, there are no plans at this time to drop a standalone version, although Microsoft doesn&#8217;t tend to &#8220;project out any further than one product wave”. &#8220;When we look at any strategy, we really are looking at market demand. [Right now] we certainly hear there&#8217;s a need for a standalone version.&#8221;</p>
<p><a href="http://www.all1Press.com" target="_blank">http://www.all1Press.com</a></p>
<p><a href="http://www.all1martpro.com" target="_blank">http://www.all1martpro.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/microsoft-to-drop-linux-unix-versions-of-enterprise-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Malicious Firefox Add-ons Installed Trojans</title>
		<link>http://www.all1sourcetech.com/malicious-firefox-add-ons-installed-trojans/</link>
		<comments>http://www.all1sourcetech.com/malicious-firefox-add-ons-installed-trojans/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 11:27:34 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Expert's Opinions]]></category>
		<category><![CDATA[Opensource]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[24X7 Support]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[business applications]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[SQL Database Services]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=435</guid>
		<description><![CDATA[Last night, Mozilla announced that two experimental Firefox add-ons, Master Filer and the Sothink Web Video Downloader version 4, infected victim PCs with Trojans when either add-on was installed.
The small-distribution extensions were previously available via Mozilla&#8217;s add-on site, but have since been removed. According to Mozilla&#8217;s post, the Master Filer add-on had been downloaded about [...]]]></description>
			<content:encoded><![CDATA[<p>Last night, Mozilla announced that two experimental Firefox add-ons, Master Filer and the Sothink <a href="http://www.all1martpro.com" target="_blank">Web Video Downloader version 4</a>, infected victim PCs with Trojans when either add-on was installed.</p>
<p>The small-distribution extensions were previously available via Mozilla&#8217;s add-on site, but have since been removed. According to Mozilla&#8217;s post, the Master Filer add-on had been downloaded about 600 times and installed the Bifrose Trojan. The Sothink Web Video Downloader version 4 slipped in the LdPinch Trojan, and had been downloaded about 4,000 times.</p>
<p>According to the open-source organization, the malicious add-ons managed to sneak by the one malware scanner (unnamed in the post) used by Mozilla. The organization says it will now be scanning with two additional detection tools.</p>
<p>If you happen to have installed either of these malicious add-ons, note that removing the add-on will not remove any installed Trojan. You&#8217;ll need to run a separate antivirus scan and disinfection to clean your system. Mozilla&#8217;s post includes a list of <a href="http://www.all1social.com" target="_blank">antivirus software</a> currently known to detect the particular Trojans involved.</p>
<p>This unfortunate incident makes clear why relying solely on one antivirus scanner is never a good idea, as no one program detects everything. Since this has happened at least once before with an infected Vietnamese language pack, I&#8217;m curious why Mozilla doesn&#8217;t simply switch to uploading all add-on submissions to the free Virustotal.com, which uses about 40 different engines to scan each submission. I&#8217;ve also asked Mozilla which scanner it had been using. If I get that information I&#8217;ll add it to this post.</p>
<p>According to Mozilla, it had been using ClamAV as its sole scanner prior to this incident. I&#8217;d guess Mozilla feels it&#8217;s a natural match as an open-source app, but the ClamAV engine didn&#8217;t fare well at detection tests when I reviewed the Windows version of the program, ClamWin.</p>
<p><a href="http://www.all1Press.com" target="_blank">http://www.all1Press.com</a></p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/malicious-firefox-add-ons-installed-trojans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symbian OS now fully open source</title>
		<link>http://www.all1sourcetech.com/symbian-os-now-fully-open-source/</link>
		<comments>http://www.all1sourcetech.com/symbian-os-now-fully-open-source/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 11:43:31 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Opensource]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[IT consultancy]]></category>
		<category><![CDATA[IT strategy]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[LAMP-Linux]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[SugarCRM]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[system design]]></category>
		<category><![CDATA[technologies]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=418</guid>
		<description><![CDATA[On Thursday, the Symbian Foundation will move forward with offering up the full Symbian smartphone platform to open source.
With the applications, middleware and the Kernel itself, the Symbian 3 platform will be offered under terms of the Eclipse Public License and other open source licenses. According to Larry Berkin, head of global alliances for the [...]]]></description>
			<content:encoded><![CDATA[<p>On Thursday, the Symbian Foundation will move forward with offering up the full <a href="http://www.all1tunes.com" target="_blank">Symbian smartphone</a> platform to open source.</p>
<p>With the applications, middleware and the Kernel itself, the Symbian 3 platform will be offered under terms of the Eclipse Public License and other open source licenses. According to Larry Berkin, head of global alliances for the foundation, “you can download it, you can modify it”. Previously, the kernel was made available via open source.</p>
<p>Berkin said they&#8217;re open-sourcing 108 packages that will be available at the source code level. Handset manufacturers can modify the code and build differentiated handsets, he added. </p>
<p>According to Berkin, the foundation members accelerated the process originally due to be fully open-sourced by June. Code, more than 40 million lines of it, will be available at Symbian&#8217;s Website at 6 a.m. Pacific Time.</p>
<p>&#8220;End-users will see, ideally, differentiated devices, converged devices that are based on Symbian that range from smartphones [to converged devices],&#8221; such as cameras or a phone that is a gaming device, he said.</p>
<p>According to Berkin, the open-sourcing could possibly result in incompatible, forked versions of the platform, and manufacturers need to be responsible for their work with Symbian. The market can be self-correcting in situations such as this, he said.</p>
<p>There are 330 million Symbian-based devices in use, said Berkin. Five manufacturers currently build Symbian devices: Nokia, Samsung, Sony Ericsson, Fujitsu, and Sharp.</p>
<p>Symbian <a href="http://www.all1social.com" target="_blank">technology</a> had been driven by Symbian Limited, the majority of which was owned by Nokia, which then spun it out as an open source project.</p>
<p>Putting Symbian into open source will boost the platform in the marketplace, said analyst William Stofega, program manager for mobile device technology and trends at IDC. Development Kits are also available to download for building Symbian applications and mobile devices. These include the <a href="http://www.all1martpro.com" target="_blank">Symbian Developer Kit</a> and the Product Development Kit.</p>
<p>In November 2009, Nokia put the Linux-based Maemo OS on its high-end N900 &#8220;mobile computer,&#8221; which features a phone and capabilities like email, a Web browser, and video. But the company remains a backer of Symbian, according to Nokia representatives.</p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/symbian-os-now-fully-open-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disputed Joojoo tablet to ship at end of February</title>
		<link>http://www.all1sourcetech.com/disputed-joojoo-tablet-to-ship-at-end-of-february/</link>
		<comments>http://www.all1sourcetech.com/disputed-joojoo-tablet-to-ship-at-end-of-february/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 12:27:50 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Opensource]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[24X7 Support]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Customized solutions]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[Software development]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=408</guid>
		<description><![CDATA[A Web-browsing tablet device, the Joojoo, which is the subjects of a high-profile Silicon Valley legal dispute, appears on track to reach early buyers at the end of February.
After the technology blog TechCrunch, the flat touch-screen computer was known until December as the CrunchPad. It was born from a post by the blog&#8217;s well-connected and [...]]]></description>
			<content:encoded><![CDATA[<p>A Web-browsing tablet device, the Joojoo, which is the subjects of a high-profile Silicon Valley legal dispute, appears on track to reach early buyers at the end of February.</p>
<p>After the technology blog TechCrunch, the flat touch-screen computer was known until December as the CrunchPad. It was born from a post by the blog&#8217;s well-connected and outspoken founder, Michael Arrington that called for collaborators on a &#8220;dead simple and dirt cheap <a href="http://www.all1martpro.com" target="_blank">touch screen</a> Web tablet.&#8221;</p>
<p>Singapore-based Chandrasekar Rathakrishnan stepped up. His software startup, Fusion Garage, worked with Arrington and his team until November. And at that point the project imploded, with Fusion Garage announcing it would sell the device under a new name — and without Arrington&#8217;s involvement.</p>
<p>The production of the Joojoo is under way, said Rathakrishnan Wednesday, despite a federal lawsuit filed by Arrington. CSL Group, a Malaysia-based mobile phone and netbook maker, is subsidizing production costs in exchange for an undisclosed revenue share, according to Rathakrishnan.</p>
<p>Arrington is seeking damages and to keep Fusion Garage from selling or profiting from the Joojoo device. His lawyer didn&#8217;t return a message seeking comment about whether they might take further legal action.</p>
<p>CSL, which makes Blackberry-like phones it calls &#8220;Blueberry,&#8221; will also be an investor in the startup&#8217;s next round of funding, expected to close in the next two weeks. Late last year, Fusion Garage said it raised $3 million in a first round.</p>
<p>In an interview, Rathakrishnan would not specify how many people pre-ordered the $499 tablet, but &#8220;a good part&#8221; of those who did will receive their devices at the end of this month, he said.</p>
<p>Dramatically, the tablet landscape has changed since the Joojoo was first unveiled. At the International <a href="http://www.all1social.com" target="_blank">Consumer Electronics Show</a> in January, Hewlett-Packard Co., Dell Inc. and others presented tablet prototypes. Less than a month later, Apple Inc. took the wraps off a long-anticipated version it calls the iPad.</p>
<p>Apple&#8217;s iPhone upended the smart phone category, leaving competitors scrambling to come out with touch-screen phones and application stores of their own. Many analysts expect Apple&#8217;s iPad to define the nascent tablet category in the same way.</p>
<p>However, Rathakrishnan said he believes the Joojoo gives consumers a better experience than the iPad because it has a larger screen and people will use it to surf the &#8220;real&#8221; Web, or sites they see on their regular PCs, rather than consume bits and pieces delivered through add-on apps.</p>
<p>He also implied Apple had imitated Fusion Garage in its development and marketing of the iPad. Both devices start at $499, Rathakrishnan noted, and Steve Jobs, Apple&#8217;s CEO, made his presentation from what looked like a couch after Fusion Garage described the Joojoo as perfect for &#8220;<a href="http://www.all1martpro.com" target="_blank">couch computing</a>.&#8221;</p>
<p>Apple didn&#8217;t immediately return messages seeking comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/disputed-joojoo-tablet-to-ship-at-end-of-february/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple Addresses iMac Flicker Problem with Update</title>
		<link>http://www.all1sourcetech.com/apple-addresses-imac-flicker-problem-with-update/</link>
		<comments>http://www.all1sourcetech.com/apple-addresses-imac-flicker-problem-with-update/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 11:54:26 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Technical News]]></category>
		<category><![CDATA[24X7 Support]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[business applications]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[Mission critical solutions]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[SQL Database Services]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=399</guid>
		<description><![CDATA[Apple has posted a firmware update, 27-inch iMac Display Firmware Update 1.0, to address persistent flickering problems in Apple&#8217;s largest iMac.
On Apple’s Web Site, the issue is heavily documented in this support thread, should fix what users have called intermittent flickers lasting a quarter of a second or so. But the fix won&#8217;t solve another [...]]]></description>
			<content:encoded><![CDATA[<p>Apple has posted a firmware update, 27-inch iMac Display Firmware Update 1.0, to address persistent flickering problems in Apple&#8217;s largest <a href="http://www.all1tunes.com" target="_blank">iMac</a>.</p>
<p>On Apple’s Web Site, the issue is heavily documented in this support thread, should fix what users have called intermittent flickers lasting a quarter of a second or so. But the fix won&#8217;t solve another concern: complaints of yellowing in the monitor, which Apple requires users return the monitor to an Apple store.</p>
<p>However, Apple has issued what appears to be a standard warning or disclaimer: &#8220;If your screen remains black after applying the update, contact Apple Care or an Apple Authorized Service Provider.  If you continue to experience image corruption or display flickering, make sure you have also installed the <a href="http://www.all1social.com" target="_blank">27-inch iMac Graphics</a> Firmware Update 1.0.  If you are still having display issues after successfully completing both firmware updates, contact AppleCare or an Apple Authorized Service Provider.</p>
<p>The graphics firmware update, issued in December, was supposed to address ATI Radeon HD 4670 and 4850 graphics cards that may caused image corruption or display flickering. We can only assume the fix didn&#8217;t work, however, necessitating the second update.</p>
<p>It&#8217;s difficult to say whether <a href="http://www.all1martpro.com" target="_blank">Apple</a> has solved the problem, as one user pointed the inherent problem with support forums: once the problem is fixed, people no longer visit the site, as their problems have been solved.</p>
<p>User &#8220;Aaron Stroot&#8221; reported: I have a week 45 27&#8243; iMac i7. It has had minor screen flickering since the beginning, but it never really bothered me enough to worry about exchanging it. I never saw the flickering in Windows 7 so I figured it was a software thing that could be fixed, he added.</p>
<p>&#8220;Anyways, here is my experience:<br />
1) First firmware update &#8211; seemed to fix it, but flickering came back after a day.</p>
<p><a href="http://www.all1martpro.com" target="_blank">http://www.all1martpro.com</a></p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/apple-addresses-imac-flicker-problem-with-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google tailoring tablet computer software</title>
		<link>http://www.all1sourcetech.com/google-tailoring-tablet-computer-software/</link>
		<comments>http://www.all1sourcetech.com/google-tailoring-tablet-computer-software/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 12:13:43 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Editorial]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[24X7 Support]]></category>
		<category><![CDATA[Customized solutions]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[Software development]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=386</guid>
		<description><![CDATA[
Though an iPad has commanded the technology world’s attention, Google quietly continued working on tablet computer software that could run rivals to Apple’s latest creation.
An image of what a Google tablet might look like were featured at a Chromium developers web page on Tuesday along with talk of how touchscreen controls could work based on [...]]]></description>
			<content:encoded><![CDATA[<p><img alt=" Google tailoring tablet computer software" src="http://d.yimg.com/a/p/afp/20100203/capt.photo_1265157954855-1-0.jpg?x=213&#038;y=140&#038;xc=1&#038;yc=1&#038;wc=409&#038;hc=269&#038;q=85&#038;sig=XnI12WhAlCA8i.NQ1rRMsA--" class="alignright" width="213" height="140" title="Google tailoring tablet computer software" /></p>
<p>Though an iPad has commanded the <a href="http://www.all1tunes.com" target="_blank">technology world</a>’s attention, Google quietly continued working on tablet computer software that could run rivals to Apple’s latest creation.</p>
<p>An image of what a Google tablet might look like were featured at a Chromium developers web page on Tuesday along with talk of how touchscreen controls could work based on the Internet titan&#8217;s Chrome computer <a href="http://www.all1social.com" target="_blank">operating system</a>.</p>
<p>The images were posted online two days before the January 27 event at which Apple unveiled an iPad tablet computer that will begin shipping worldwide in March.</p>
<p>According to Google Chrome lead designer Glen Murphy, you may have seen our Chrome OS tablet concepts from last Monday; in the video, some floating hands interact with a touch surface. </p>
<p>Google made images and video of Google tablet gesture control capabilities available online for developers to consider.</p>
<p>The &#8220;concept user interface under development&#8221; could signal another front on which Google will battle with Apple, which uses its own custom software in the iPad, iPhone, iPod, and <a href="http://www.all1martpro.com" target="_blank">Macintosh</a> computers.</p>
<p>The website focused on Chrome OS software and did not indicate whether Google would make its own tablet or opt to let others tend to the hardware.</p>
<p>Google&#8217;s mobile Android software is built into iPhone competitors, including the Internet firm&#8217;s own Nexus One smartphone released in January.</p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/google-tailoring-tablet-computer-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chrome Has 5.2 Percent of Browser Market, Ahead of Goal</title>
		<link>http://www.all1sourcetech.com/chrome-has-5-2-percent-of-browser-market-ahead-of-goal/</link>
		<comments>http://www.all1sourcetech.com/chrome-has-5-2-percent-of-browser-market-ahead-of-goal/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 11:53:09 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Microsoft Technology]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[24X7 Support]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[business applications]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[SQL Database Services]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=383</guid>
		<description><![CDATA[Google may not be winning over the multitudes with its Nexus One &#8220;superphone,&#8221; but the search giant is gaining ground in the 21st century browser wars. Google&#8217;s Chrome browser grabbed market share in January from its key rivals, Microsoft&#8217;s Internet Explorer and Mozilla&#8217;s Firefox.
According to NetApps, Chrome finished January strong, with a 5.2 percent market [...]]]></description>
			<content:encoded><![CDATA[<p>Google may not be winning over the multitudes with its Nexus One &#8220;superphone,&#8221; but the search giant is gaining ground in the 21st century browser wars. Google&#8217;s Chrome browser grabbed market share in January from its key rivals, Microsoft&#8217;s <a href="http://www.all1social.com" target="_blank">Internet Explorer</a> and Mozilla&#8217;s Firefox.</p>
<p>According to NetApps, Chrome finished January strong, with a 5.2 percent market share. Although a 0.6 percent gain may not immediately rattle the dominance of well-entrenched players like IE and Firefox, it does show a steady flow of users to the youngest player in the browser market.</p>
<p>Overall, Google has doubled its market share, and in January saw the second-largest gain since rolling out the browser in September 2008. Google has already surpassed Apple&#8217;s Safari in the browser wars, making it the third-most-used browser.</p>
<p>Google has exceeded its goals, hitting five percent well before its September 2010 deadline. Google aims to reach 10 percent by September 2011 but could reach that number this year if its growth rate holds steady.</p>
<p><strong>Digging Deeper Into IE Usage</strong></p>
<p>Weeks after the bad publicity around Internet Explorer 6 and its role in the China-based attacks on Google, <a href="http://www.all1tunes.com" target="_blank">Internet Explorer</a> lost half a percentage point of market share in January, according to NetApps. That leaves Microsoft with 62.2 percent of the browser market, a record low.</p>
<p>Microsoft has steadily seen its share of the market eroded by the likes of Firefox, Opera and even Apple. Google seems to be putting another dent in the browser market leader. Microsoft has lost 10 percent of its market in the past 12 months while Google reached its 5.2 percent mark.</p>
<p>Looking a little deeper, IE6 saw a 0.9 decline in market share to 20.1 percent. IE7 also suffered in January, dipping a full percentage point to 14.6 percent. The good news for Microsoft is that IE8 is stemming the tide of losses, at least in part. Launched last March, IE8 rose 1.5 percent in January, ending the month with a 22.3 percent market share. That makes <a href="http://www.all1martpro.com" target="_blank">IE8 Microsoft</a>&#8217;s most popular version.</p>
<p><strong>Browser Round Up</strong></p>
<p>The number-two browser, Firefox, also wasn&#8217;t immune to market declines in January. For the second month in a row, Firefox usage dipped. However, unlike Microsoft, Mozilla may not have as much reason to worry.</p>
<p>Although Firefox saw usage declines in December and January, there is no long-term trend. Firefox has only seen declines twice in about a two-year period. Overall, Firefox dipped 0.2 percent in January and still holds 24.4 percent of the browser market.</p>
<p>Turning to Safari, Apple gained a slight advantage, ending January with 4.5 percent market share, not enough to regain the number three spot but enough to outpace Opera, which fell to 2.4 percent.</p>
<p>Michael Gartenberg, a vice president at Interpret, doesn&#8217;t think the IE6 incident related to Chinese hackers has affected IE. Rather, he credits Google&#8217;s gains with the fact that the search giant regularly advertises Chrome on its home page.</p>
<p>&#8220;When you go to Google.com, if you are not using Chrome, you get offers to download and upgrade. When you&#8217;ve got the kind of clout Google has on its home page, it&#8217;s going to help drive adoption going forward,&#8221; Gartenberg said. &#8220;Of course, Chrome is a pretty good product, so that helps as well. It goes to show how fluid the tech market is today. It&#8217;s not easy for a small company to do a browser, but if you are a company the size of Google, you can make an impact on the industry.&#8221;</p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/chrome-has-5-2-percent-of-browser-market-ahead-of-goal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Southwest In-flight Wi-Fi Coming Next Quarter</title>
		<link>http://www.all1sourcetech.com/southwest-in-flight-wi-fi-coming-next-quarter/</link>
		<comments>http://www.all1sourcetech.com/southwest-in-flight-wi-fi-coming-next-quarter/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 11:39:34 +0000</pubDate>
		<dc:creator>Shweta</dc:creator>
				<category><![CDATA[Technical News]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Customized solutions]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[Software development]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=366</guid>
		<description><![CDATA[Southwest Airlines has ordered equipment for an in-flight Wi-Fi service, which will start deploying it on planes in the second quarter of this year. 
The discount US airline has signed a deal with Row 44 after a number of delays in order to become the latest carrier to offer wireless Internet access in the cabins [...]]]></description>
			<content:encoded><![CDATA[<p>Southwest Airlines has ordered equipment for an <a href="http://www.all1social.com" target="_blank">in-flight Wi-Fi service</a>, which will start deploying it on planes in the second quarter of this year. </p>
<p>The discount US airline has signed a deal with Row 44 after a number of delays in order to become the latest carrier to offer wireless Internet access in the cabins of its airlines, according to the Southwest blogs posted Friday. Once Southwest begins installing the gear, it plans to equip about 15 planes every month and have Wi-Fi available throughout its fleet of 540 craft in early 2012.</p>
<p>Southwest has made its name as a no-frills airline and will be adding Wi-Fi after several other U.S. airlines have at least begun their deployments. For example, American Airlines, Delta Air Lines and United Airlines all provide the service on some planes, and the smaller AirTran Airways and Virgin America offer it throughout their fleets.</p>
<p>Like Alaska Airlines, the Southwest is taking a different route than most carriers, using the satellite-based network of Row 44 rather than Aircell&#8217;s GoGo service, which uses 3G to link planes to the Internet. </p>
<p>Row 44 received a U.S. Federal Communications Commission license just last month to commercially deploy its latest system, the one Southwest will be using. Southwest and Alaska at one time had planned to launch trials with Row 44 in 2008 but didn&#8217;t formally announce their tests until February 2009. Now, Southwest says it has finished testing and signed a contract to buy equipment from the company.</p>
<p>Not many hard numbers have been provided by Airlines on the use of in-flight Wi-Fi, which typically costs about US$6 for a short flight. During the holiday season in the U.S., Google sponsored a promotion that made <a href="http://www.all1martpro.com" target="_blank">Wi-Fi free</a> on Virgin America and in 47 airports around the country, and that program ended Jan. 15.</p>
<p>According to Southwest, it would disclose the pricing of its service in April. Under the airline&#8217;s deal with Row 44, the airline agrees to deliver a certain amount of revenue to Row 44 but can set its own prices for customers, according to Gregg Fialcowitz, president and co-founder of Row 44.</p>
<p>Fialcowitz said, the Row 44 service is designed to deliver an average of about 10M bps (bits per second) for all the users on the plane to share.</p>
<p>According to Southwest spokeswoman Whitney Eichinger, Southwest won&#8217;t allow voice calls over the Internet and will filter inappropriate content by preventing passengers from visiting certain sites.</p>
<p>Row 44, based in Westlake Village, California, currently covers North America, from Alaska through Canada and the continental U.S., Fialcowitz said. By the middle of this year it will provide coverage across Europe, with Norwegian Air Shuttle offering its service, as well as supporting services on trans-Atlantic flights and in Africa, he said. By the end of 2012, Row 44 expects to offer service around the world.</p>
<p><a href="http://www.all1martpro.com" target="_blank">http://www.all1martpro.com</a></p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/southwest-in-flight-wi-fi-coming-next-quarter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google News tunes into favored topics</title>
		<link>http://www.all1sourcetech.com/google-news-tunes-into-favored-topics/</link>
		<comments>http://www.all1sourcetech.com/google-news-tunes-into-favored-topics/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 11:28:18 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Technical News]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[IT consultancy]]></category>
		<category><![CDATA[IT strategy]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[LAMP-Linux]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[SugarCRM]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[system design]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=362</guid>
		<description><![CDATA[
Google has begun letting online visitors tell its news website what topics they want to tune into.
According to Google Software engineer Jude Britto, people can click on &#8220;stars&#8221; to mark groups of stories on preferred subjects to signal Google News to watch for updates or developments.
In a blog post, Britto said, it&#8217;s one way to [...]]]></description>
			<content:encoded><![CDATA[<p><img alt=" Google News tunes into favored topics" src="http://d.yimg.com/a/p/afp/20100202/capt.photo_1265078260124-1-0.jpg?x=213&#038;y=92&#038;xc=1&#038;yc=1&#038;wc=408&#038;hc=176&#038;q=85&#038;sig=7JAMqcfeMj0pw4dnIOxImw--" class="alignright" width="213" height="92" title="Google News tunes into favored topics" /></p>
<p>Google has begun letting <a href="http://www.all1martpro.com" target="_blank">online visitors</a> tell its news website what topics they want to tune into.</p>
<p>According to Google Software engineer Jude Britto, people can click on &#8220;stars&#8221; to mark groups of stories on preferred subjects to signal <a href="http://www.all1social.com" target="_blank">Google</a> News to watch for updates or developments.</p>
<p>In a blog post, Britto said, it&#8217;s one way to let us know that you&#8217;re interested in that subject, when you star a story in Google News.</p>
<p>He added, when there are significant updates, we’ll alert you by putting the headline in bold so you can get more information.</p>
<p>The 20 most recently &#8220;starred&#8221; stories will be tracked in a section added to the Google News page, according to Britto.</p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/google-news-tunes-into-favored-topics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Report: Google to Open App Store for Business Software</title>
		<link>http://www.all1sourcetech.com/report-google-to-open-app-store-for-business-software/</link>
		<comments>http://www.all1sourcetech.com/report-google-to-open-app-store-for-business-software/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 11:24:27 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Editorial]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[desktop support]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[help desk]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[intranet]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[remote administration]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=360</guid>
		<description><![CDATA[The Wall Street Journal reported Monday that Google may open as early as March an online store to sell third-party software that complements its Google Apps collaboration and communication hosted suite.
According to the Journal, whose article was based on anonymous sources, Google would let customers purchase the software from its store and charge the third-party [...]]]></description>
			<content:encoded><![CDATA[<p>The Wall Street Journal reported Monday that Google may open as early as March an online store to sell <a href="http://www.all1tunes.com" target="_blank">third-party software</a> that complements its Google Apps collaboration and communication hosted suite.</p>
<p>According to the Journal, whose article was based on anonymous sources, Google would let customers purchase the software from its store and charge the third-party developers a commission.</p>
<p>Though Google’s spokeswoman declined top comment on the Journal article, but she pointed out that Google already has a site called Solutions Marketplace where it features applications and professional services from third-party developers that complement Google Apps and other Google enterprise products.</p>
<p>However, Solutions Marketplace doesn&#8217;t have <a href="http://www.all1social.com" target="_blank">e-commerce</a> capabilities, meaning that customers interested in purchasing the products and services have to contact the vendors by going to their Web sites or calling them on the phone. The Google Solutions Marketplace is an information resource and portal for customers to connect with third-party vendors, according to the spokeswoman.</p>
<p>For the Solutions Marketplace, it would seem a natural extension to gain e-commerce transaction capabilities, an area in which Google has ample experience with products such as Google Checkout, the s elf-serve ad-selling system of Google AdWords, the <a href="http://www.all1martpro.com" target="_blank">Android</a> Market and Google Apps itself, for which users can sign up online. Thus, the app store could be more an evolution of the existing Solutions Marketplace site than an entirely new site built from scratch.</p>
<p>Google CEO Eric Schmidt has singled out the company&#8217;s IT products for business as one of several attractive businesses to complement its core online search ad business.</p>
<p>.Google Apps comes in several versions, including the most sophisticated one, Apps Premier, which costs US$50 per user per year and is geared toward medium and large businesses. However, most Apps customers are individuals and small businesses that use the free Standard version. The free Education edition for schools and universities is also popular.</p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/report-google-to-open-app-store-for-business-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Plans 250GB Disk Add-on for Xbox 360 in Japan</title>
		<link>http://www.all1sourcetech.com/microsoft-plans-250gb-disk-add-on-for-xbox-360-in-japan/</link>
		<comments>http://www.all1sourcetech.com/microsoft-plans-250gb-disk-add-on-for-xbox-360-in-japan/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 12:32:17 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Microsoft Technology]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[24X7 Support]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[online video streaming]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[website hosting]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=357</guid>
		<description><![CDATA[Microsoft said Monday, it will begin selling in Japan next month an add-on 250GB hard-disk drive for the Xbox 360 console.
And on March 11, the drive will go on sale, which will cost ¥15,540 (US$172).

Its launch in Japan will mark the first time Microsoft has offered a 250GB drive add-on for the Xbox 360 as [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft said Monday, it will begin selling in Japan next month an add-on 250GB hard-disk drive for the Xbox 360 console.</p>
<p>And on March 11, the drive will go on sale, which will cost ¥15,540 (US$172).</p>
<p><img class="alignright" src="http://www.saskmodchip.com/Images/xbox-360-logo.jpg" alt="xbox 360 logo Microsoft Plans 250GB Disk Add on for Xbox 360 in Japan" width="317" height="191" title="Microsoft Plans 250GB Disk Add on for Xbox 360 in Japan" /></p>
<p>Its launch in Japan will mark the first time Microsoft has offered a 250GB drive add-on for the <a href="http://www.all1social.com" target="_blank">Xbox 360</a> as a stand-alone unit. The drive has been available overseas since late last year but only in a bundle with a new console.</p>
<p>According to a Microsoft spokesman, Kei Iwasaki, Microsoft has no current plans to put it on sale as a stand-alone unit outside of Japan.</p>
<p>The new drive more than doubles storage capacity from the 120GB drive available on the current <a href="http://www.all1social.com" target="_blank">Xbox 360 Elite</a> console. The drive is used to store downloaded software, TV shows, movies and other content from Microsoft&#8217;s Xbox Live Marketplace online store.</p>
<p>Local storage on the console is becoming more important to Microsoft as it attempts to expand its online store and generate additional revenue from entertainment content.</p>
<p>Throughout 2009 the company continued to attract users to its <a href="http://www.all1social.com" target="_blank">Xbox Live</a> service and ended the year with 29 million users, up 35 percent from the last day of 2008.</p>
<p>Recently, Rival Sony re-launched its PlayStation 3 console and includes a 120GB drive in each unit as it too works on expanding online sales of content such as movies and game downloads.</p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/microsoft-plans-250gb-disk-add-on-for-xbox-360-in-japan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla 1.6 released</title>
		<link>http://www.all1sourcetech.com/joomla-1-6-released/</link>
		<comments>http://www.all1sourcetech.com/joomla-1-6-released/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 12:16:56 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Expert's Opinions]]></category>
		<category><![CDATA[New Product Release]]></category>
		<category><![CDATA[Opensource]]></category>
		<category><![CDATA[24X7 Support]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[LAMP-Linux]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[SugarCRM]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=351</guid>
		<description><![CDATA[
Joomla 1.6 is the next generation of Joomla, the most popular Open Source Content Management System in the world. 
The broad goals of Joomla 1.6 are to:
•	implement an expanded access control system;
•	implement a nested categories solution;
•	add a commenting system;
•	and standardize the way extensions are built using the MVC framework.
To achieve those things there is a [...]]]></description>
			<content:encoded><![CDATA[<p><img alt="joomla 1.6 seo Joomla 1.6 released" src="http://www.goodwebpractices.com/images/stories/joomla-1.6-seo.jpg" class="alignright" width="226" height="224" title="Joomla 1.6 released" /></p>
<p><strong>Joomla 1.6</strong> is the next generation of Joomla, the most popular Open Source <a href="http://www.all1social.com" target="_blank">Content Management System</a> in the world. </p>
<p>The broad goals of Joomla 1.6 are to:</p>
<p>•	implement an expanded access control system;<br />
•	implement a nested categories solution;<br />
•	add a commenting system;<br />
•	and standardize the way extensions are built using the MVC framework.</p>
<p>To achieve those things there is a lot of other ancillary work to be done, but those are the highlights of this <a href="http://www.all1martpro.com" target="_blank">new version</a>.</p>
<p>Apart from some user interface improvements the new access control and nested categories systems are feature complete.  The access control system is progressively coming online throughout the administrator as is the nested category system.  The new comments system has not been added to the core stack yet.</p>
<p>Currently, most work focuses on finishing the backend Administrator, bringing all extensions up to a common standard.  The following Administrator extensions are &#8220;<a href="http://www.all1tunes.com" target="_blank">Beta ready</a>&#8220;, which means they are essentially feature complete, at a consistent code standard and ready for rigorous testing.</p>
<p>•	Articles manager<br />
•	Banners manager<br />
•	Configuration manager (used for Global Configuration and Component options)<br />
•	Modules manager<br />
•	Messages (private) manager<br />
•	Newsfeeds manager<br />
•	Plugins manager<br />
•	Redirect manager (a new component to redirect old page links to new ones)<br />
•	Search manager<br />
•	Template manager (including new &#8220;styles&#8221;)<br />
•	User manager (includes ability to add new user groups and content access levels)<br />
•	Weblinks manager</p>
<p><a href="http://www.all1martpro.com" target="_blank">http://www.all1martpro.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/joomla-1-6-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NHS Trusts told to ditch Internet Explorer 6</title>
		<link>http://www.all1sourcetech.com/nhs-trusts-told-to-ditch-internet-explorer-6/</link>
		<comments>http://www.all1sourcetech.com/nhs-trusts-told-to-ditch-internet-explorer-6/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 12:10:19 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Microsoft Technology]]></category>
		<category><![CDATA[Opensource]]></category>
		<category><![CDATA[24X7 Support]]></category>
		<category><![CDATA[Customized solutions]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[Software development]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=348</guid>
		<description><![CDATA[
After the Department of Health (DoH) released an urgent bulletin of advising all NHS Trusts to use Internet Explorer 6 to upgrade their browser, the fallout from the Chinese hack on Google’s system continued.
According to Microsoft, a critical flaw in Internet Explorer had been the route by which Chinese hackers sought to infiltrate Google&#8217;s corporate [...]]]></description>
			<content:encoded><![CDATA[<p><img alt="ie7 NHS Trusts told to ditch Internet Explorer 6" src="http://jmz.iki.fi/images/blog/06/ie7.jpg" class="alignleft" width="220" height="220" title="NHS Trusts told to ditch Internet Explorer 6" /></p>
<p>After the Department of Health (DoH) released an urgent bulletin of advising all NHS Trusts to use <a href="http://www.all1tunes.com" target="_blank">Internet Explorer 6</a> to upgrade their browser, the fallout from the Chinese hack on Google’s system continued.</p>
<p>According to Microsoft, a critical flaw in <a href="http://www.all1social.com" target="_blank">Internet Explorer</a> had been the route by which Chinese hackers sought to infiltrate Google&#8217;s corporate systems, a flaw that it later admitted to knowing about for months.</p>
<p>And Microsoft has since issued an out-of-band patch for the problem, which can allow remote code execution on affected systems. But the company is recommending users to upgrade to IE8, which has security measures which will make the exploit code difficult to implement effectively.</p>
<p>And now the DoH Informatics Directorate has issued its own guidance for NHS Trusts, urging them to implement the fix as soon as possible. The bulletin also recommended that &#8220;organizations still using IE6 on the affected platforms upgrade to IE7&#8243;.</p>
<p>The directive added that the IE7 has been warranted to work correctly with NHS Spine applications such as CSA, and provides additional <a href="http://www.all1martpro.com" target="_blank">security</a> features over IE6.</p>
<p>No further information has been provided bye the DoH, and is presumably not recommending an upgrade to the newest version of Microsoft&#8217;s browser, IE8, because of support issues with these key applications.</p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/nhs-trusts-told-to-ditch-internet-explorer-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google offers bounty for Chrome vulnerabilities</title>
		<link>http://www.all1sourcetech.com/google-offers-bounty-for-chrome-vulnerabilities/</link>
		<comments>http://www.all1sourcetech.com/google-offers-bounty-for-chrome-vulnerabilities/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 12:02:40 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[New Product Release]]></category>
		<category><![CDATA[24X7 Support]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[business applications]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[SQL Database Services]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=346</guid>
		<description><![CDATA[Google is offering a cash reward to security researchers for finding flaws in its Chrome web browser.
It would be doling out payments ranging from $500 to $1337 to developers who find and directly report security holes in the browser, said the company. The $1337 amount is an apparent homage to the hacker term &#8216;1337&#8242; (pronounced [...]]]></description>
			<content:encoded><![CDATA[<p>Google is offering a cash reward to security researchers for finding flaws in its <a href="http://www.all1tunes.com" target="_blank">Chrome web browser</a>.</p>
<p>It would be doling out payments ranging from $500 to $1337 to developers who find and directly report security holes in the browser, said the company. The $1337 amount is an apparent homage to the hacker term &#8216;1337&#8242; (pronounced &#8220;elite&#8221;.)</p>
<p>The payment system will apply to flaws in the <a href="http://www.all1social.com" target="_blank">Chromium open source project</a> along with the Chrome browser and bundled components such as Google Gears.</p>
<p>The company was looking to bring more third party researchers into its midst, said <a href="http://www.all1martpro.com" target="_blank">Google Chrome</a> security team member Chris Evans. Some of the most interesting security bugs have been fixed by researchers external to the Chromium projects, he wrote. </p>
<p>&#8220;Thanks to the collaborative efforts of these people and others, Chromium security is stronger and users are safer.&#8221;</p>
<p>Paying vendors for disclosure of flaws has been a tactic used by both developers and security vendors to encourage not only research, but responsible disclosure. </p>
<p>According to firm, it hopes that by offering cash rewards, researchers will report flaws to those who will patch them rather than malware writers who pay for new vulnerabilities to exploit.</p>
<p><a href="http://www.all1social.com" target="_blank">http://www.all1social.com</a></p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/google-offers-bounty-for-chrome-vulnerabilities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>US Holocaust survivors slam Mussolini iPhone app</title>
		<link>http://www.all1sourcetech.com/us-holocaust-survivors-slam-mussolini-iphone-app/</link>
		<comments>http://www.all1sourcetech.com/us-holocaust-survivors-slam-mussolini-iphone-app/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 11:23:27 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[New Product Release]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[IT consultancy]]></category>
		<category><![CDATA[LAMP-Linux]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[SugarCRM]]></category>
		<category><![CDATA[system design]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=339</guid>
		<description><![CDATA[
US-based group of Holocaust survivors condemned an Apple iPhone application featuring speeches by Benito Mussolini, calling it &#8220;an insult to the memory of all victims of Nazism and Fascism.&#8221;
According to vice president of the American Gathering of Holocaust Survivors and their Descendants, Elan Steinberg, it is a disgrace and surrender to crass commercialism that the [...]]]></description>
			<content:encoded><![CDATA[<p><img alt=" US Holocaust survivors slam Mussolini iPhone app" src="http://d.yimg.com/a/p/afp/20100130/capt.photo_1264821120184-1-0.jpg?x=213&#038;y=273&#038;xc=1&#038;yc=1&#038;wc=319&#038;hc=409&#038;q=85&#038;sig=jIKb8r_zppE9nxG0Cugd4w--" class="alignleft" width="213" height="273" title="US Holocaust survivors slam Mussolini iPhone app" /></p>
<p>US-based group of Holocaust survivors condemned an Apple iPhone application featuring speeches by Benito Mussolini, calling it &#8220;an insult to the memory of all victims of Nazism and Fascism.&#8221;</p>
<p>According to vice president of the American Gathering of Holocaust Survivors and their Descendants, Elan Steinberg, it is a disgrace and surrender to crass commercialism that the Apple computing company has approved the release of this &#8216;app&#8217; through their <a href="http://www.all1tunes.com" target="_blank">online iTunes store</a>.</p>
<p>She said, &#8220;we are protesting to them as their tight regulation and control of release of such apps makes them responsible”. Steinberg added this is an insult to the memory of all victims of Nazism and Fascism, Jew and non-Jew, and should be condemned for its offense to decency and conscience.</p>
<p>According to the creator of the application, Luigi Marino, Italians are downloading &#8220;<a href="http://www.all1social.com" target="_blank">iMussolini</a>,&#8221; which features audio, text and video of his speeches, at a rate of around 1,000 a day.</p>
<p>Last week, Marino launched the app and it is already reportedly the best-selling application on Italy&#8217;s online Apple store. He added he is planning to also develop a version for Apple&#8217;s new iPad.</p>
<p>According to Marino, he developed &#8220;iMussolini&#8221; as a historical tool, but it has predictably attracted admirers of the fascist wartime dictator. </p>
<p>Some have posted fascist slogans such as &#8220;Dux Mea Lux&#8221; (The DuceIs My Light) or &#8220;Duce! Duce! Duce!&#8221; on the application&#8217;s page at the <a href="http://www.all1martpro.com" target="_blank">Apple App Store</a>.</p>
<p>Apple has assured Marino that it would not remove the application from sale but is deleting any offending comments, he told AFP. The California firm did not return an AFP request for comment.</p>
<p><a href="http://www.all1social.com" target="_blank">http://www.all1social.com</a></p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/us-holocaust-survivors-slam-mussolini-iphone-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sun-Oracle Merger Looks Bright for OpenOffice, MySQL</title>
		<link>http://www.all1sourcetech.com/sun-oracle-merger-looks-bright-for-openoffice-mysql/</link>
		<comments>http://www.all1sourcetech.com/sun-oracle-merger-looks-bright-for-openoffice-mysql/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 11:18:57 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Opensource]]></category>
		<category><![CDATA[24X7 Support]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[business applications]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[SQL Database Services]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=337</guid>
		<description><![CDATA[Oracle announced its intentions with Sun products, although Apple’s iPad announcement has eclipsed, and now the acquisition of Sun Microsystems is compete.
The announcement was actually a planned webcast, which reassured those worried over the fate of two open-source Sun products for small business: the database software, MySQL and the productivity suite,OpenOffice.org. The acquisition might make [...]]]></description>
			<content:encoded><![CDATA[<p>Oracle announced its intentions with Sun products, although Apple’s iPad announcement has eclipsed, and now the acquisition of Sun Microsystems is compete.</p>
<p>The announcement was actually a planned webcast, which reassured those worried over the fate of two <a href="http://www.all1tunes.com" target="_blank">open-source Sun</a> products for small business: the database software, MySQL and the productivity suite,OpenOffice.org. The acquisition might make MySQL and OpenOffice.org even more competitive against costly Microsoft counterparts (SQL Server and Microsoft Office).</p>
<p>OpenOffice.org has already proven a worthy alternative to the stranglehold Microsoft has in the productivity suite space for SMBs. And Last year, OpenOffice.org reached its one hundred millionth download. Yet, Sun has still not managed to make great headway in the productivity space. </p>
<p>Forrester&#8217;s research reported last year that 80% of businesses still use Microsoft Office. Oracle will be able to push competition against <a href="http://www.all1social.com" target="_blank">Microsoft</a> in a way that Sun never could quite accomplish.</p>
<p>Oracle is also poised to offer a cloud-based productivity suite that leverages the awesomeness of OpenOffice.org into a real competitor against Google Docs/Apps.</p>
<p>Oracle&#8217;s plan to keep MySQL Community Edition free, as well as spend more on research and development for it than Sun did in its most recent fiscal year, bodes well for MySQL.</p>
<p>The database savvy of Oracle and <a href="http://www.all1martpro.com" target="_blank">MySQL developers</a> can make MySQL into a formidable competitor to MS SQL and the database of choice for small to mid size business.</p>
<p>For small business, it&#8217;s a win. Both products will stay free; they work well already and only stand to get better with Oracle&#8217;s backing.</p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/sun-oracle-merger-looks-bright-for-openoffice-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle-Sun Merger could benefit small Business</title>
		<link>http://www.all1sourcetech.com/oracle-sun-merger-could-benefit-small-business/</link>
		<comments>http://www.all1sourcetech.com/oracle-sun-merger-could-benefit-small-business/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 11:11:45 +0000</pubDate>
		<dc:creator>Naggie</dc:creator>
				<category><![CDATA[Opensource]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[business applications]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[SQL Database Services]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=335</guid>
		<description><![CDATA[Small business has reason to cheer Oracle&#8217;s acquisition of Sun, now that it appears OpenOffice.org and MySQL look to do well&#8211;perhaps better&#8211;under new ownership.
Time will tell, but market forces may make the OpenOffice.org suite important to Sun. MySQL is protected, in part, by an agreement with the European Commission.
This week, Oracle took control of Sun [...]]]></description>
			<content:encoded><![CDATA[<p>Small business has reason to cheer Oracle&#8217;s acquisition of Sun, now that it appears OpenOffice.org and <a href="http://www.all1tunes.com" target="_blank">MySQL</a> look to do well&#8211;perhaps better&#8211;under new ownership.</p>
<p>Time will tell, but market forces may make the OpenOffice.org suite important to Sun. MySQL is protected, in part, by an agreement with the European Commission.</p>
<p>This week, Oracle took control of Sun and held a webcast to detail its plans. Most of those plans are enterprise in nature, but some impact SMB customers as well.</p>
<p>MySQL is a key Internet technology for many businesses and can be seen as competing with Oracle&#8217;s legacy database products. And the good news is that Oracle has promised to continue to offer a free MySQL and is taking a mostly hands-off approach to the MySQL commercial products, which retain their own sales and development organizations.</p>
<p>Oracle has already committed to a cloud-based apps suite, dubbed Cloud Office, which is positioned to compete with <a href="http://www.all1social.com" target="_blank">Microsoft</a> and Google. OpenOffice.org could play an important part in the project, given both its installed based and the value of its technology and brand.</p>
<p>OpenOffice.org alternately could remain what it is today, and be totally independent of Cloud Office. Oracle has not said what will happen to StarOffice, Sun&#8217;s paid version of OpenOffice.org.</p>
<p>While no one will confuse Oracle with a company that specializes in small-business solutions, it has become a player there and is likely to increase its presence in that market.</p>
<p>Generally, Oracle has got good marks for its plans to keep most Sun products and technologies alive and even invest more resources in many of them. Both OpenOffice.org and <a href="http://www.all1martpro.com" target="_blank">MySQL</a> benefit from the Oracle take-over, mostly because Sun had become so enfeebled in recent years.</p>
<p>For MySQL, a strong and independent Sun would be a better home, but given Sun&#8217;s lack of success in popularizing OpenOffice.org, that software might do better under Oracle&#8217;s stewardship. While OpenOffice.org recently celebrated its 100 millionth download, it took a decade and multiple releases to reach that milestone.</p>
<p>MySQL is much more important than OpenOffice.org, in that it powers so many Web sites and applications. When the acquisition was announced there were immediate concerns that Oracle would kill it as a competitor to its own SQL products.</p>
<p><a href="http://www.all1tunes.com" target="_blank">http://www.all1tunes.com</a></p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/oracle-sun-merger-could-benefit-small-business/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xbox Live points system draws lawsuit</title>
		<link>http://www.all1sourcetech.com/xbox-live-points-system-draws-lawsuit/</link>
		<comments>http://www.all1sourcetech.com/xbox-live-points-system-draws-lawsuit/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 11:51:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[24X7 Support]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[business applications]]></category>
		<category><![CDATA[hand held solutions]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[MS-SQL & .NET]]></category>
		<category><![CDATA[MySQL & PHP]]></category>
		<category><![CDATA[SQL Database Services]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.all1sourcetech.com/?p=328</guid>
		<description><![CDATA[Xbox fans are fanatical about their console of choice, but there&#8217;s one thing they almost universally agree on: The &#8220;Points&#8221; system for buying content absolutely sucks.
In order to purchase a game or other content on Xbox Live, you have to first use your credit card to buy points. Only then can those points be exchanged [...]]]></description>
			<content:encoded><![CDATA[<p>Xbox fans are fanatical about their console of choice, but there&#8217;s one thing they almost universally agree on: The &#8220;Points&#8221; system for buying content absolutely sucks.</p>
<p>In order to purchase a game or other content on <a href="http://www.all1social.com" target="_blank">Xbox Live</a>, you have to first use your credit card to buy points. Only then can those points be exchanged for content. What peeves people so badly is that Microsoft sets the value of these points at 800 for $10 instead of something more immediately and easily convertible, like, oh, 1000 for $10. This makes everything on the Xbox Marketplace seem cheaper than it is: Shelling out 200 points feels like a $2 expenditure, but in reality it&#8217;s $2.50, a solid 25 percent bonus for <a href="http://www.all1tunes.com" target="_blank">Microsoft</a>. Over time that adds up&#8230; and you&#8217;re invariably left with leftover points, since you have to buy points in bulk.</p>
<p>Reportedly, Microsoft is got tired due to consumer complaints that it may scrap points and go to a straight cash system &#8212; a move that it can&#8217;t undertake too soon, in my opinion. However, the botched method for points valuation isn&#8217;t the reason why attorney Samuel Lassoff is suing Microsoft. He is alleging that the company engaged in &#8220;fraudulent handling&#8221; of his account, and that he and other users of the system have been overcharged for products which were ultimately not provided.</p>
<p>While Lassoff mainly seems to be alleging that the points system is buggy and error-prone, more vocal complaints come from those who have alleged that their accounts have been victimized by hackers who have absconded with the balances in their accounts and even their gaming identities.</p>
<p>Still, don&#8217;t weep for <a href="http://www.all1martpro.com" target="_blank">Microsoft</a> quite yet. Lassoff may just be looking for a quick handout, with a history of lawsuits against Google and Bally&#8217;s Casino over various wrongs committed against him. </p>
<p><a href="http://tech.yahoo.com" target="_blank">http://tech.yahoo.com</a></p>
<p><a href="http://get-a-designer.com/" target="_blank">http://get-a-designer.com</a></p>
<p><a href="http://www.all1sourcetech.com" target="_blank">http://www.all1sourcetech.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.all1sourcetech.com/xbox-live-points-system-draws-lawsuit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
