<?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>S.G. Vulcan &#187; Symbian</title>
	<atom:link href="http://www.sgvulcan.com/category/systems/symbian/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sgvulcan.com</link>
	<description>Silviu&#039;s tech blog. Resources and informations about linux, windows, symbian systems, networks, reviews, microcontrollers, and more.</description>
	<lastBuildDate>Wed, 08 Feb 2012 09:39:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Mobile formula one site and application</title>
		<link>http://www.sgvulcan.com/mobile-formula-one-site-and-applicatio/</link>
		<comments>http://www.sgvulcan.com/mobile-formula-one-site-and-applicatio/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 21:00:53 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[Symbian]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[formula 1]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=734</guid>
		<description><![CDATA[Hey, I used up until last race the nice live-f1 application to see live timings in the linux terminal. But starting with the last race I couldn&#8217;t. But today I got great news. The official Formula 1 website just released a mobile version available at mobile.formula1.com and oh joy and happiness they also released a mobile application that will offer Live Timings on your mobile phone. To my biggest surprise, my symbian based Nokia E71 is supported. I seriously awaited to only see android and iphone there because they are all the rage. I suppose it&#8217;s because Formula 1 is much more popular in europe. Anyways I have live timings on my phone for free now. Also many more services are available for your phone for free &#8211; like sms text services &#8211; that I find very nice. So have fun !]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sgvulcan.com/wp-content/uploads/2010/03/mobile_formula_one.jpg" rel="lightbox[734]"><img class="aligncenter size-medium wp-image-738" title="mobile_formula_one" src="http://www.sgvulcan.com/wp-content/uploads/2010/03/mobile_formula_one-300x92.jpg" alt="" width="300" height="92" /></a>Hey,</p>
<p>I used up until last race the nice live-f1 application to see live timings in the linux terminal. But starting with the last race I couldn&#8217;t. But today I got great news. The official Formula 1 website just released a mobile version available at <a href="http://mobile.formula1.com" target="_blank">mobile.formula1.com</a> and oh joy and happiness they also released a mobile application that will offer Live Timings on your mobile phone.</p>
<p>To my biggest surprise, my symbian based Nokia E71 is supported. I seriously awaited to only see android and iphone there because they are all the rage. I suppose it&#8217;s because Formula 1 is much more popular in europe. Anyways I have live timings on my phone for free now.</p>
<p>Also many more services are available for your phone for free &#8211; like sms text services &#8211; that I find very nice.</p>
<p>So have fun !</p>
<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/mobile-formula-one-site-and-applicatio/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Wake on LAN a machine using Python &#8211; WOL</title>
		<link>http://www.sgvulcan.com/wake-on-lan-a-machine-using-python-wol/</link>
		<comments>http://www.sgvulcan.com/wake-on-lan-a-machine-using-python-wol/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 21:50:17 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[*nix]]></category>
		<category><![CDATA[Maemo]]></category>
		<category><![CDATA[Symbian]]></category>
		<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[wol]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=684</guid>
		<description><![CDATA[This is something useful: code to wake up a machine on lan using python. Since python is available on most devices now (symbian, maeom, windows, linux and so on) it&#8217;s pretty usefull. So, if you have machines that you want to be able to start this is the code to do it. I found it floating on the internet but since it&#8217;s GPL I see no problem in posting it. Full credit and thanks for the useful code go to the author. BTW I use this on my n800 tablet to wake up my backup server and my media center pc &#8211; what will you use it for? # Wake-On-LAN # # Copyright (C) 2002 by Micro Systems Marc Balmer # Written by Marc Balmer, marc@msys.ch, http://www.msys.ch/ # This code is free software under the GPL import struct, socket def WakeOnLan(ethernet_address): # Construct a six-byte hardware address addr_byte = ethernet_address.split(':') hw_addr = struct.pack('BBBBBB', int(addr_byte[0], 16), int(addr_byte[1], 16), int(addr_byte[2], 16), int(addr_byte[3], 16), int(addr_byte[4], 16), int(addr_byte[5], 16)) # Build the Wake-On-LAN "Magic Packet"... msg = '\xff' * 6 + hw_addr * 16 # ...and send it to the broadcast address using UDP s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) s.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1) s.sendto(msg, ('', 9)) [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-688" title="Wake-on-lan-cable" src="http://www.sgvulcan.com/wp-content/uploads/2010/01/Wake-on-lan-cable-150x150.jpg" alt="" width="150" height="150" />This is something useful: code to wake up a machine on lan using python. Since python is available on most devices now (symbian, maeom, windows, linux and so on) it&#8217;s pretty usefull. So, if you have machines that you want to be able to start this is the code to do it. I found it floating on the internet but since it&#8217;s GPL I see no problem in posting it. Full credit and thanks for the useful code go to the author. BTW I use this on my n800 tablet to wake up my backup server and my media center pc &#8211; what will you use it for?</p>
<pre># Wake-On-LAN
#
# Copyright (C) 2002 by Micro Systems Marc Balmer
# Written by Marc Balmer, marc@msys.ch, http://www.msys.ch/
# This code is free software under the GPL

import struct, socket

def WakeOnLan(ethernet_address):

  # Construct a six-byte hardware address

  addr_byte = ethernet_address.split(':')
  hw_addr = struct.pack('BBBBBB', int(addr_byte[0], 16),
    int(addr_byte[1], 16),
    int(addr_byte[2], 16),
    int(addr_byte[3], 16),
    int(addr_byte[4], 16),
    int(addr_byte[5], 16))

  # Build the Wake-On-LAN "Magic Packet"...

  msg = '\xff' * 6 + hw_addr * 16

  # ...and send it to the broadcast address using UDP

  s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
  s.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)
  s.sendto(msg, ('', 9))
  s.close()

# Example use
WakeOnLan('0:3:93:81:68:b2')</pre>
<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/wake-on-lan-a-machine-using-python-wol/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Three browsers on a phone</title>
		<link>http://www.sgvulcan.com/three-browsers-on-a-phone/</link>
		<comments>http://www.sgvulcan.com/three-browsers-on-a-phone/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 17:00:39 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[Opinions]]></category>
		<category><![CDATA[Symbian]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[e71]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[skyfire]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=602</guid>
		<description><![CDATA[The current state of browsers available for the Symbian operating system are a proof that there isn&#8217;t such thing as a one size fits all. You have the default browser, opera mobile, opera mini, skyfire and some others. I have installed on my e71 nokia phone Opera Mobile 10 beta, Skyfire and of course the default browser. I tried to settle on using just one but I just couldn&#8217;t. If I want to watch some flash video online or browse a really heavy site Skyfire is really the only option. For browsing mobile sites or sites that fit enough on the small display I still prefer the default Web browser because I don&#8217;t have to zoom. For others I like Opera 10 Mobile because you have a nice bookmarks page, it&#8217;s snappy and looks good. That&#8217;s why I don&#8217;t really get the browser wars found around the forums and the internet. Having the choice is great. The only way to get decent video and performance of heavy sites it&#8217;s trough a proxy based browser so this is where Skyfire fits. On the other hand I don&#8217;t like trusting 3rd parties with my passwords so for private pages I use the [...]]]></description>
			<content:encoded><![CDATA[<p>The current state of browsers available for the Symbian operating system are a proof that there isn&#8217;t such thing as a <em><strong>one size fits all</strong></em>.<em><strong> </strong></em>You have the default browser, opera mobile, opera mini, skyfire and some others. I have installed on my e71 nokia phone Opera Mobile 10 beta, Skyfire and of course the default browser.</p>
<p>I tried to settle on using just one but I just couldn&#8217;t. If I want to watch some flash video online or browse a really heavy site Skyfire is really the only option.</p>
<p>For browsing mobile sites or sites that fit enough on the small display I still prefer the default Web browser because I don&#8217;t have to zoom.</p>
<p>For others I like Opera 10 Mobile because you have a nice bookmarks page, it&#8217;s snappy and looks good.</p>
<p>That&#8217;s why I don&#8217;t really get the browser wars found around the forums and the internet. Having the choice is great. The only way to get decent video and performance of heavy sites it&#8217;s trough a proxy based browser so this is where Skyfire fits. On the other hand I don&#8217;t like trusting 3rd parties with my passwords so for private pages I use the default web browser. For some pages Opera is faster and more confortable.</p>
<p>As always YMMV so be sure to give them a try.</p>
<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/three-browsers-on-a-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My recomandations for Symbian 5th edition</title>
		<link>http://www.sgvulcan.com/my-recomandations-for-symbian-5th-edition/</link>
		<comments>http://www.sgvulcan.com/my-recomandations-for-symbian-5th-edition/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 12:36:59 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[Symbian]]></category>
		<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[5800]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[shareware]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=530</guid>
		<description><![CDATA[Before you ask, no, I didn&#8217;t gave up my trusted E71. But my wife&#8217;s had it with her old 7610 so we upgraded her phone. After some deliberation, and her not liking the design of the e55 and e52 she finally settled for a Nokia 5800. As you know that&#8217;s a 5th edition, touchscreen phone. I was a bit reticent because it&#8217;s never a good idea to get the first product from a series (that being the first Nokia touchscreen), still after reading a few reviews getting the 5800 seemed like a good idea. She doesn&#8217;t write that much and so missing a keyboard is no problem for her. There are probably 1001 reviews online so I&#8217;m not getting into that, and there are enough top 10 freeware and top 10 shareware lists too. I&#8217;ll just list the software that I found useful for her and working on the 5800: Fring - not using voip that much, but it&#8217;s great for consolidated IM-ing (yahoo, google talk and skype) Facebook &#8211; the iphone interface works great. I tried Symabook but it&#8217;s slow and unstable Garmin Mobile XT &#8211; wonderful on the wide screen. My wife travels a lot as a professional interpreter so a GPS application comes handy. Using [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sgvulcan.com/wp-content/uploads/2009/10/5800-red-0.jpg" rel="lightbox[530]"><img class="alignleft size-medium wp-image-532" title="5800-red-0" src="http://www.sgvulcan.com/wp-content/uploads/2009/10/5800-red-0-141x300.jpg" alt="5800-red-0" width="141" height="300" /></a>Before you ask, no, I didn&#8217;t gave up my trusted E71. But my wife&#8217;s had it with her old 7610 so we upgraded her phone. After some deliberation, and her not liking the design of the e55 and e52 she finally settled for a Nokia 5800.</p>
<p>As you know that&#8217;s a 5th edition, touchscreen phone. I was a bit reticent because it&#8217;s never a good idea to get the first product from a series (that being the first Nokia touchscreen), still after reading a few reviews getting the 5800 seemed like a good idea. She doesn&#8217;t write that much and so missing a keyboard is no problem for her.</p>
<p>There are probably 1001 reviews online so I&#8217;m not getting into that, and there are enough top 10 freeware and top 10 shareware lists too. I&#8217;ll just list the software that I found useful for her and working on the 5800:</p>
<ul>
<li><a href="http://www.fring.com/" target="_blank">Fring </a>- not using voip that much, but it&#8217;s great for consolidated IM-ing (yahoo, google talk and skype)</li>
<li>Facebook &#8211; the iphone interface works great. I tried Symabook but it&#8217;s slow and unstable</li>
<li>Garmin Mobile XT &#8211; wonderful on the wide screen. My wife travels a lot as a professional interpreter so a GPS application comes handy. Using nokia maps on a roaming connection is not really an option, and the Garmin maps seem the best around.</li>
<li>Accuweather applet &#8211; looks good, shows the weather.</li>
<li>FreeUnRar</li>
</ul>
<p>Still to come:</p>
<ul>
<li>Quickoffice.  I&#8217;ve been spoiled with the E series devices especially since the latest offer QuickOffice 6 is free.</li>
<li>Skyfire &#8211; still not working on 5th edition but it&#8217;s been promised for some time now.</li>
</ul>
<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/my-recomandations-for-symbian-5th-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keep the backlight on in Skyfire, Symbian</title>
		<link>http://www.sgvulcan.com/keep-the-backlight-on-in-skyfire-on-your-symbian-phone/</link>
		<comments>http://www.sgvulcan.com/keep-the-backlight-on-in-skyfire-on-your-symbian-phone/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 11:45:59 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[Symbian]]></category>
		<category><![CDATA[Tips and tricks]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=481</guid>
		<description><![CDATA[Keep the backlight on when playing movies in Skyfire on your Symbian Phone I noticed something annoying when watching streaming video in Skyfire on my Nokia E71. The official Youtube app and the built in media player don&#8217;t experience this but Skyfire does: the backlight turns off (according to the settings) even if a video is playing in skyfire &#8211; that&#8217;s pretty annoying. I had to keep pressing random keys so that the light comes back on. I discovered that S60SpotOn has the option to keep the backlight on no matter what. Yes there&#8217;s an extra step &#8211; start s60SpotOn, set backlight on, and after that watch videos but it works. I hope that the Skyfire team corrects this problem soon, untill then this is a viable sollution. BTW S60SpotOn&#8217;s certificate is expired, you need to set the date back in 2007 or 2008 for it to install.]]></description>
			<content:encoded><![CDATA[<h2>Keep the backlight on when playing movies in Skyfire on your Symbian Phone</h2>
<p>I noticed something annoying when watching streaming video in Skyfire on my Nokia E71. The official Youtube app and the built in media player don&#8217;t experience this but Skyfire does: the backlight turns off (according to the settings) even if a video is playing in skyfire &#8211; that&#8217;s pretty annoying. I had to keep pressing random keys so that the light comes back on.</p>
<p>I discovered that <a href="http://my-symbian.com/s60v3/software/applications.php?faq=1&amp;fldAuto=98" target="_blank"><span style="font-family: Verdana; font-size: xx-small;"><span style="font-family: Arial; font-size: small;"><strong><span style="font-family: Arial; font-size: medium;">S60SpotOn</span></strong></span></span></a> has the option to keep the backlight on no matter what. Yes there&#8217;s an extra step &#8211; start s60SpotOn, set backlight on, and after that watch videos but it works. I hope that the Skyfire team corrects this problem soon, untill then this is a viable sollution.</p>
<p>BTW S60SpotOn&#8217;s certificate is expired, you need to set the date back in 2007 or 2008 for it to install.</p>
<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/keep-the-backlight-on-in-skyfire-on-your-symbian-phone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I found the best themes for my E71</title>
		<link>http://www.sgvulcan.com/i-found-the-best-themes-for-my-e71/</link>
		<comments>http://www.sgvulcan.com/i-found-the-best-themes-for-my-e71/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 13:26:39 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[Symbian]]></category>
		<category><![CDATA[e71]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=454</guid>
		<description><![CDATA[I gave up finding a nice theme for my E71 long ago. Even accepted the ugly icons. A few weeks ago I found a decent theme with ovi icons and got a bit happier. Today I had time to search a bit some more and I have some of the best Nokia E71 themes I found: Ovi Blue from Nokia Conversations Aviator, Enterprise and Zen Touch from Tehkseven &#8211; those are both with sevan and ovi icons. Zen Touch: Aviator: Enterprise: Ovi blue has screenshots if you follow the link above. Have fun with your E71 that is no longer graphically chalanged.]]></description>
			<content:encoded><![CDATA[<p>I gave up finding a nice theme for my E71 long ago. Even accepted the ugly icons. A few weeks ago I found a decent theme with ovi icons and got a bit happier. Today I had time to search a bit some more and I have some of the best Nokia E71 themes I found:</p>
<p>Ovi Blue from <a href="http://conversations.nokia.com/2009/02/26/heres-that-ovi-theme/" target="_blank">Nokia Conversations</a></p>
<p>Aviator, Enterprise and Zen Touch from <a href="http://themes.tehkseven.net/">Tehkseven</a> &#8211; those are both with sevan and ovi icons.</p>
<p><strong>Zen Touch:</strong></p>
<p style="text-align: center;"><a href="http://www.sgvulcan.com/wp-content/uploads/2009/08/Screenshot0026.jpg" rel="lightbox[454]"><img class="size-full wp-image-455 aligncenter" title="Screenshot0026" src="http://www.sgvulcan.com/wp-content/uploads/2009/08/Screenshot0026.jpg" alt="Screenshot0026" width="320" height="240" /></a><a href="http://www.sgvulcan.com/wp-content/uploads/2009/08/Screenshot0027.jpg" rel="lightbox[454]"><img class="size-full wp-image-456 aligncenter" title="Screenshot0027" src="http://www.sgvulcan.com/wp-content/uploads/2009/08/Screenshot0027.jpg" alt="Screenshot0027" width="320" height="240" /></a></p>
<p><strong>Aviator:</strong></p>
<p style="text-align: left;"><a href="http://www.sgvulcan.com/wp-content/uploads/2009/08/Screenshot0028.jpg" rel="lightbox[454]"><img class="size-full wp-image-457 aligncenter" title="Screenshot0028" src="http://www.sgvulcan.com/wp-content/uploads/2009/08/Screenshot0028.jpg" alt="Screenshot0028" width="320" height="240" /></a><a href="http://www.sgvulcan.com/wp-content/uploads/2009/08/Screenshot0029.jpg" rel="lightbox[454]"><img class="size-full wp-image-458 aligncenter" title="Screenshot0029" src="http://www.sgvulcan.com/wp-content/uploads/2009/08/Screenshot0029.jpg" alt="Screenshot0029" width="320" height="240" /></a><strong>Enterprise:</strong></p>
<p style="text-align: center;"><a href="http://www.sgvulcan.com/wp-content/uploads/2009/08/Screenshot0030.jpg" rel="lightbox[454]"><img class="size-full wp-image-459 aligncenter" title="Screenshot0030" src="http://www.sgvulcan.com/wp-content/uploads/2009/08/Screenshot0030.jpg" alt="Screenshot0030" width="320" height="240" /></a><a href="http://www.sgvulcan.com/wp-content/uploads/2009/08/Screenshot0031.jpg" rel="lightbox[454]"><img class="size-full wp-image-460 aligncenter" title="Screenshot0031" src="http://www.sgvulcan.com/wp-content/uploads/2009/08/Screenshot0031.jpg" alt="Screenshot0031" width="320" height="240" /></a></p>
<p>Ovi blue has screenshots if you follow the link above.</p>
<p>Have fun with your E71 that is no longer graphically chalanged.</p>
<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/i-found-the-best-themes-for-my-e71/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m not using Gravity for Twitter access on my phone</title>
		<link>http://www.sgvulcan.com/im-not-using-gravity-for-twitter-access-on-my-phone/</link>
		<comments>http://www.sgvulcan.com/im-not-using-gravity-for-twitter-access-on-my-phone/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 13:06:23 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[Symbian]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[native]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/im-not-using-gravity-for-twitter-access-on-my-phone/</guid>
		<description><![CDATA[Even though I like Gravity a lot, I chose a simpler FREEWARE symbian native application as a client for Twitter &#8211; Tweets60: It&#8217;s simple, fast, and has access point prioritization built in. It may not be as feature full as Gravity, but it&#8217;s free &#8211; so you can&#8217;t argue there. You can write your tweets, follow others and click links and more. Even more I find it faster than Gravity. Of course if you need or want to be able to upload pictures and other advanced features that Tweet60 misses for now you&#8217;ll need to shell out the (modest) price of Gravity. Have fun twittering !]]></description>
			<content:encoded><![CDATA[<p>Even though I like Gravity a lot, I chose a simpler FREEWARE symbian native application as a client for Twitter &#8211; <a href="http://www.tweets60.com/" target="_blank">Tweets60</a>:</p>
<p>It&#8217;s simple, fast, and has access point prioritization built in.</p>
<p style="text-align: center;"><a href="http://www.sgvulcan.com/wp-content/uploads/2009/08/tweets60_native_symbian_twitter_application.jpg" rel="lightbox[429]"><img class="aligncenter size-full wp-image-431" title="tweets60_native_symbian_twitter_application" src="http://www.sgvulcan.com/wp-content/uploads/2009/08/tweets60_native_symbian_twitter_application.jpg" alt="tweets60_native_symbian_twitter_application" width="320" height="240" /></a></p>
<p>It may not be as feature full as Gravity, but it&#8217;s free &#8211; so you can&#8217;t argue there. You can write your tweets, follow others and click links and more. Even more I find it faster than Gravity. Of course if you need or want to be able to upload pictures and other advanced features that Tweet60 misses for now you&#8217;ll need to shell out the (modest) price of Gravity.</p>
<p>Have fun twittering !</p>
<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/im-not-using-gravity-for-twitter-access-on-my-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How I sync my phone</title>
		<link>http://www.sgvulcan.com/how-i-sync-my-phone/</link>
		<comments>http://www.sgvulcan.com/how-i-sync-my-phone/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 08:17:35 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[Symbian]]></category>
		<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[ovi]]></category>
		<category><![CDATA[swim]]></category>
		<category><![CDATA[sync]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=311</guid>
		<description><![CDATA[Nokia started the Ovi online suite and I saw a bit of light. It works very well, you can send the configuration automatically to your phone and is all nicely integrated. I use Ovi to update my notes, calendar and contacts directly from a web browser. The only problem left was automatisation. ]]></description>
			<content:encoded><![CDATA[<p>Like I said I used to have an Sony Ericsson phone that had Automatic Sync built in. Nokia has sync (SyncML) but no settings to automate that. I like the ideea of syncing a phone with an online service because it gives me access to my schedule and contacts on any pc I use without the need of additional software.</p>
<div id="attachment_312" class="wp-caption aligncenter" style="width: 330px"><img class="size-full wp-image-312" title="Screenshot0022_tn" src="http://www.sgvulcan.com/wp-content/uploads/2009/06/Screenshot0022_tn.jpg" alt="Ovi.com SyncML Profile" width="320" height="240" /><p class="wp-caption-text">Ovi.com SyncML Profile</p></div>
<p>Some time ago I tried goosync, Scheduleworld and others promissing easy sync between a SyncML capable device (my phone) and Google Calendar. None proved satisfactory. Nokia started the Ovi online suite and I saw a bit of light. It works very well, you can send the configuration automatically to your phone and is all nicely integrated. I use Ovi to update my notes, calendar and contacts directly from a web browser. The only problem left was <strong>automatisation</strong>. Remembering to sync my device every time I changed something online was a bit tedious.</p>
<p>Thank you <a href="http://www.sgvulcan.com/take-your-mobile-phone-for-a-swim/">swim</a>. Now my ovi sync profile is run every 4 hours (that seems to be enough for me). The only problem left is that, since Smart Connect is not working, I must set for Sync an access point that is always available &#8211; so mobile internet ap is the only choise. Still, syncing is not data intensive, still, if you are on an expensive plan you might want to monitor it.</p>
<div id="attachment_313" class="wp-caption aligncenter" style="width: 330px"><img class="size-full wp-image-313" title="Screenshot0023_tn" src="http://www.sgvulcan.com/wp-content/uploads/2009/06/Screenshot0023_tn.jpg" alt="Swim is running Ovi.com every 4 hours on my phone" width="320" height="240" /><p class="wp-caption-text">Swim is running Ovi.com every 4 hours on my phone</p></div>
<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/how-i-sync-my-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A good, freeware text editor for your nokia symbian phone</title>
		<link>http://www.sgvulcan.com/a-good-freeware-text-editor-for-your-nokia-symbian-phone/</link>
		<comments>http://www.sgvulcan.com/a-good-freeware-text-editor-for-your-nokia-symbian-phone/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 09:03:51 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[Symbian]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[s60v2]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=275</guid>
		<description><![CDATA[More and more phones have, these days, a decent text entry method &#8211; be it T9, qwerty keyboard or touch screen. Especially if you own a qwerty phone you might be interested in a good, native text editor application. I searched, and DEdit came up. It has a ton of features, but more important you can easily edit text files on your phone. From it&#8217;s features one can note: Remember last editing position in each text-file, that you edit; Remember user-defined positions in file Use many encodings, ascii and unicode Supports editing of big files (several megabytes or even more) Easy-to-use one-hand hotkeys Even more, it has versions for older phones too, like s60v2 not only s60v3. You can find this fine, freeware text editor for your Nokia Symbian phone here: http://jbak.ru/dedit_en.php]]></description>
			<content:encoded><![CDATA[<p>More and more phones have, these days, a decent text entry method &#8211; be it T9, qwerty keyboard or touch screen. Especially if you own a qwerty phone you might be interested in a good, native text editor application.</p>
<p>I searched, and DEdit came up. It has a ton of features, but more important you can easily edit text files on your phone. From it&#8217;s features one can note:</p>
<ul>
<li>Remember last editing position in each text-file, that you edit;</li>
<li>Remember user-defined positions in file</li>
<li>Use many encodings, ascii and unicode</li>
<li>Supports editing of big files (several megabytes or even more)</li>
<li>Easy-to-use one-hand hotkeys</li>
</ul>
<p>Even more, it has versions for older phones too, like s60v2 not only s60v3. You can find this fine, freeware text editor for your Nokia Symbian phone here:</p>
<p><a href="http://jbak.ru/dedit_en.php" target="_blank">http://jbak.ru/dedit_en.php</a></p>
<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/a-good-freeware-text-editor-for-your-nokia-symbian-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smart connect update</title>
		<link>http://www.sgvulcan.com/smart-connect-update/</link>
		<comments>http://www.sgvulcan.com/smart-connect-update/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 15:53:18 +0000</pubDate>
		<dc:creator>silviu</dc:creator>
				<category><![CDATA[Symbian]]></category>
		<category><![CDATA[e61]]></category>
		<category><![CDATA[e71]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[smart connect]]></category>

		<guid isPermaLink="false">http://www.sgvulcan.com/?p=266</guid>
		<description><![CDATA[Remeber my article in which I was praising Smart Connect for filling the inexplicable gap in the access point configuration on newer E series nokia phones? Well I have a small update. It&#8217;s crap. From time to time my phone was unnable to connect to the internet, be it 3g or wi-fi untill I restarted it. I kept thinking it&#8217;s the phones problem, and waited for a firmware update. Well I managed to track the problem: it&#8217;s Smart Connect. At some point it will ask &#8220;Hotspot log-in, add to the list&#8221; or something like that. No matter what I answer (yes or no) after this messege smart connect hangs and the phone cannot connect to the interenet. I cannot start smart connect after this either. I managed to dig on Birdstep&#8217;s homepage an updated version but it has the same problem. I tried to use Y-tasks to identify the stuck process but I couldn&#8217;t. So I removed smart connect because having to restart my phone from time to time is not acceptable. Psiloc connect is not a sollution for me because untill Psiloc does away with their crap DRM (which runs all the time, eating ram, battery and cpu) I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p>Remeber <a href="http://www.sgvulcan.com/access-point-groups-on-the-nokia-71/">my article</a> in which I was praising Smart Connect for filling the inexplicable gap in the access point configuration on newer E series nokia phones?</p>
<p>Well I have a small update. <strong>It&#8217;s crap. </strong>From time to time my phone was unnable to connect to the internet, be it 3g or wi-fi untill I restarted it. I kept thinking it&#8217;s the phones problem, and waited for a firmware update. Well I managed to track the problem: it&#8217;s <strong>Smart Connect.</strong> At some point it will ask &#8220;Hotspot log-in, add to the list&#8221; or something like that. No matter what I answer (yes or no) after this messege smart connect hangs and the phone cannot connect to the interenet. I cannot start smart connect after this either. I managed to dig on Birdstep&#8217;s homepage an updated version but it has the same problem. I tried to use Y-tasks to identify the stuck process but I couldn&#8217;t.</p>
<p>So I removed smart connect because having to restart my phone from time to time is not acceptable. Psiloc connect is not a sollution for me because untill Psiloc does away with their crap DRM (which runs all the time, eating ram, battery and cpu) I&#8217;m not touching any of their products again. So I&#8217;m back to choosing manual access points, or in case of stuff I want to run unattended (like swim for SyncML sync) to using just the mobile 3g access point.</p>
<p>So if your phone cannot conect to the internet from time to time, no matter what access point you try, do yourself a favour and get rid of Smart connect</p>
<div id="in_post_ad_bottom_1" style="clear:both;margin: 5px;padding: 0px;"><p> </p>
<div align="center">
<script type="text/javascript"><!--
google_ad_client = "pub-7825242150714747";
/* Dupa articol 468x60, created 8/19/09 */
google_ad_slot = "8916341192";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div></div><div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.sgvulcan.com/smart-connect-update/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

