<?xml version='1.0' encoding='utf-8' ?>

<rss version='2.0' xmlns:lj='http://www.livejournal.org/rss/lj/1.0/'>
<channel>
  <title>iphone</title>
  <lastBuildDate>Wed, 23 Sep 2015 13:21:15 GMT</lastBuildDate>
  <generator>LiveJournal / SAPO Campus Blogs</generator>
<item>
  <guid isPermaLink='true'>http://kannelsmsc.blogs.ua.sapo.pt/613.html</guid>
  <pubDate>Wed, 23 Sep 2015 13:21:15 GMT</pubDate>
  <title>VoIP videoconference IOS App, Open WebRTC</title>
  <author>fxsf</author>  <link>http://kannelsmsc.blogs.ua.sapo.pt/613.html</link>
  <description>&lt;p style=&quot;text-align: center;&quot;&gt;&lt;img src=&quot;http://static1.squarespace.com/static/53f1eedee4b0439bf8d480c5/t/54061d4ae4b0f4290347d846/1438865748088/?format=1500w&quot; border=&quot;0&quot; align=&quot;middle&quot; style=&quot;border-color:black;&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;h1&gt;&lt;span style=&quot;color: rgb(51, 153, 102);&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;My application you can download it HERE:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt; &lt;/span&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;https://www.dropbox.com/sh/f74br70w7ziwtbn/AAAZ9FHakrZT9FeSb01MyrZ1a?dl=0&quot; target=&quot;_self&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;https://www.dropbox.com/sh/f74br70w7ziwt&lt;wbr /&gt;bn/AAAZ9FHakrZT9FeSb01MyrZ1a?dl=0&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/h1&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; In this post I will show my work on WebRTC, an open project that provides browsers, embedded and mobile applications with Real-Time Communications (RTC) capabilities via simple APIs. With OpenWebRTC you can build native WebRTC apps that communicate with browsers that supports the WebRTC standard, such as Chrome, Firefox and Bowser. OpenWebRTC is especially focused on mobile platforms, with powerful features such as hardware accelerated video coding and OpenGL-based video rendering. Sounds fancy right? Yes, it does. But why choosing WebRTC to do VoIP over, lets say, other existent signalling (like SIP or skype) and encoding technologies (just like H264, H323, V8, etc...)? For me, the answer was simply: Copyright issues. So, I wanted to develop an IOS app for my Iphone 6, brand new IOS 9 (not the preview version already), and that meant that I could not use code covered by the GPL licensing.&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;That is right. GPL licensing allows you to freely use and redistribute the code, but it does not allow you to pose further restrictions while doing so. Sadly, Apple App store does, REGARDLESS of it being paid or free. WebRTC is distributed with a BSD licensing, meaning that you can do whatever you like with it, for as long as you put the due disclaimer in your code. So, currently you can choose one out of two possible implementations for WebRTC: WebRTC from Google, and OpenWebRTC from Ericsson (Germany). Both do almost the same, but I prefer the OpenWebRTC due to the fact that I want to develop for mobile. Quick comparison can be found at (&lt;a href=&quot;https://bloggeek.me/ericssons-openwebrtc-project/&quot;&gt;https://bloggeek.me/ericssons-openwebr&lt;wbr /&gt;tc-project/&lt;/a&gt;): &lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://bloggeek.me/ericssons-openwebrtc-project/&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;https://i0.wp.com/bloggeek.me/wp-content/uploads/2014/11/201411-WebRTCorg-vs-OpenWebRTCio.png?zoom=2&amp;amp;resize=600%2C241&quot; alt=&quot;WebRTC vs. OpenWebRTC&quot; border=&quot;0&quot; style=&quot;border-color:black;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;Therefore, I am using OpenWebRTC as a choice. I followed the official tutorials to build a native IOS application (you can build a hybrid one, meaning the use of a brower view inside an app), and there are other tutorials for other platforms just like Android:&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;&lt;a href=&quot;https://github.com/EricssonResearch/openwebrtc-examples/wiki/Developing-iOS-apps&quot;&gt;https://github.com/EricssonResearch/ope&lt;wbr /&gt;nwebrtc-examples/wiki/Developing-iOS-app&lt;wbr /&gt;s&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;&lt;a href=&quot;https://github.com/EricssonResearch/openwebrtc-examples/wiki/Developing-a-native-iOS-app&quot;&gt;https://github.com/EricssonResearch/ope&lt;wbr /&gt;nwebrtc-examples/wiki/Developing-a-nativ&lt;wbr /&gt;e-iOS-app&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;The app I developed is based on the Original Native app from the OpenWebRTC available here (&lt;a href=&quot;https://github.com/EricssonResearch/openwebrtc-examples/tree/master/ios/NativeDemo&quot;&gt;https://github.com/EricssonResearch/op&lt;wbr /&gt;enwebrtc-examples/tree/master/ios/Native&lt;wbr /&gt;Demo&lt;/a&gt;). What I did in this application was creating a XCode project with all the dependencies solved (you do not need CocoaPods to run it), and I solved most of the problems to run in in IOS 9 (it does compile for previous versions like IOS 8, with extra warnings naturally). &lt;/p&gt;&lt;h1&gt; &lt;/h1&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;So, The Portrait view that is buggy from the NativeDemo app from OpenWebRTC is:&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://fotos.ua.sapo.pt/K3zYEFDlVrN1m9iK9OHZ&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://fotos.ua.sapo.pt/JZVLEJLNpwEkVUKauTMD/340x600&quot; width=&quot;340&quot; height=&quot;600&quot; border=&quot;0&quot; align=&quot;middle&quot; style=&quot;border-color:black;&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;Portrait, after fixing the error, as well as Landscape:&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://fotos.ua.sapo.pt/K3zYEFDlVrN1m9iK9OHZ&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://fotos.ua.sapo.pt/K3zYEFDlVrN1m9iK9OHZ/338x600&quot; width=&quot;338&quot; height=&quot;600&quot; border=&quot;0&quot; align=&quot;middle&quot; style=&quot;border-color:black;&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;  &lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://fotos.ua.sapo.pt/QkN2aOlAV1zqHWF0gBJR&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://fotos.ua.sapo.pt/QkN2aOlAV1zqHWF0gBJR/800x450&quot; border=&quot;0&quot; align=&quot;middle&quot; style=&quot;border-color:black;&quot; width=&quot;800&quot; height=&quot;450&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;As you can see, in Portrait is not perfect, but the video is stretched to meet the box. As the pull I did through CocoaPods grabbed the compiled binaries from OpenWebRTC and OpenWebRTC-SDK, I could not edit the video feed itself. For that, I would have to build the application from scratch and build the OpenWebRTC source files (wasting almost 10 hours of my life! Trust me, I did it). So the solution I found was manipulating the view itself, through rotations and translations and scaling. Though, in Landscape mode, it works better.&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;The application was tested by the following demo: &lt;a href=&quot;http://demo.openwebrtc.org:38080&quot;&gt;http://demo.openwebrtc.org:38080&lt;/a&gt; &lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://fotos.ua.sapo.pt/g1ywPbHY2TkPbjkdoOZ6&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://fotos.ua.sapo.pt/g1ywPbHY2TkPbjkdoOZ6/800x400&quot; border=&quot;0&quot; style=&quot;border-color:black;&quot; width=&quot;800&quot; height=&quot;400&quot; align=&quot;middle&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;Then, you have to select the same id in the application and in the demo in the browser.&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://fotos.ua.sapo.pt/5SE8FRdUKG4mrhNkHYgu&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://fotos.ua.sapo.pt/RWONZZ8ecSYq2o6lrmeQ/360x600&quot; border=&quot;0&quot; style=&quot;border-color:black;&quot; width=&quot;360&quot; height=&quot;600&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;At the server side, once the connection is established in the same room, you can see as follows:&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;(Portait)&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://fotos.ua.sapo.pt/cQ4ZwRlhzWgBscnwGNhp&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://fotos.ua.sapo.pt/cQ4ZwRlhzWgBscnwGNhp/800x459&quot; width=&quot;800&quot; height=&quot;459&quot; border=&quot;0&quot; align=&quot;middle&quot; style=&quot;border-color:black;&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;and in Landscape as well. You can see the server updated the orientation of the video properly:&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://fotos.ua.sapo.pt/YR1D5r5KbRfzL5WZ5emo&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://fotos.ua.sapo.pt/YR1D5r5KbRfzL5WZ5emo/800x388&quot; width=&quot;800&quot; height=&quot;388&quot; border=&quot;0&quot; align=&quot;middle&quot; style=&quot;border-color:black;&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt; &lt;/p&gt;</description>
</item>
<item>
  <guid isPermaLink='true'>http://paulofonseca.blogs.ua.sapo.pt/1476.html</guid>
  <pubDate>Fri, 14 Dec 2012 15:16:53 GMT</pubDate>
  <title>SocialTracker</title>
  <author>paulo-fonseca</author>  <link>http://paulofonseca.blogs.ua.sapo.pt/1476.html</link>
  <description>&lt;p&gt;SocialTracker é uma aplicação desenvolvida para a cadeira de Computação Móvel. Aqui fica um pequeno vídeo que mostra algumas das funcionalidades. &lt;/p&gt;&lt;p&gt; &lt;/p&gt;
&lt;object width=&quot;400&quot; height=&quot;322&quot;&gt;
    &lt;param name=&quot;movie&quot; value=&quot;http://rd.videos.ua.sapo.pt/play?file=http://rd.videos.ua.sapo.pt/h6NmObpM309P4wasIKnt/mov/1&quot;&gt;&lt;/param&gt;
    &lt;embed src=&quot;http://rd.videos.ua.sapo.pt/play?file=http://rd.videos.ua.sapo.pt/h6NmObpM309P4wasIKnt/mov/1&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;400&quot; height=&quot;322&quot; wmode=&quot;transparent&quot;  allowScriptAccess=&quot;never&quot;&gt;&lt;/embed&gt;
&lt;/object&gt;
    &lt;p&gt; &lt;/p&gt;</description>
</item>
<item>
  <guid isPermaLink='true'>http://lowbudgetdigitalshortfilms.blogs.ua.sapo.pt/4922.html</guid>
  <pubDate>Thu, 29 Dec 2011 11:39:44 GMT</pubDate>
  <title>Efeitos especiais ao kilo... numa aplicação para iphone!</title>
  <author>bruno-almeida</author>  <link>http://lowbudgetdigitalshortfilms.blogs.ua.sapo.pt/4922.html</link>
  <description>&lt;p&gt;&lt;a href=&quot;http://www.revolucaodigital.net/2011/12/29/action-movie-fx-aplicacao-ios/&quot;&gt;http://www.revolucaodigital.net/2011/12/2&lt;wbr /&gt;9/action-movie-fx-aplicacao-ios/&lt;/a&gt;&lt;/p&gt;</description>
</item>
<item>
  <guid isPermaLink='true'>http://mobiduz.blogs.ua.sapo.pt/2152.html</guid>
  <pubDate>Sat, 17 Dec 2011 22:47:53 GMT</pubDate>
  <title>MobiDuz no top do SlideShare</title>
  <author>henriquemacedo</author>  <link>http://mobiduz.blogs.ua.sapo.pt/2152.html</link>
  <description>&lt;p style=&quot;text-align: center; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(51, 51, 51); font-family: &amp;#39;lucida grande&amp;#39;, tahoma, verdana, arial, sans-serif; font-size: 13px; line-height: 18px; &quot;&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://fotos.ua.sapo.pt/ODZS3oGe2myK2zcpgBfj&quot;&gt;&lt;img border=&quot;0&quot; align=&quot;middle&quot; style=&quot;border-color:black;&quot; alt=&quot;&quot; src=&quot;http://fotos.ua.sapo.pt/ODZS3oGe2myK2zcpgBfj/s320x240&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(51, 51, 51); font-family: &amp;#39;lucida grande&amp;#39;, tahoma, verdana, arial, sans-serif; font-size: 13px; line-height: 18px; &quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt; A&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(51, 51, 51); font-family: &amp;#39;lucida grande&amp;#39;, tahoma, verdana, arial, sans-serif; font-size: 13px; line-height: 18px; &quot;&gt; &lt;a target=&quot;_blank&quot; href=&quot;http://www.slideshare.net/henriquemacedo/apresentao-da-aplicao-mobiduz-final&quot;&gt;apresentação&lt;/a&gt; de hoje seguiu directamente para o top das apresentações mais faladas no Facebook e ficou destacada na homepage do &lt;a target=&quot;_blank&quot; href=&quot;http://www.slideshare.net&quot;&gt;SlideShare&lt;/a&gt;.&lt;/span&gt;&lt;/p&gt;</description>
</item>
<item>
  <guid isPermaLink='true'>http://icampus.blogs.ua.sapo.pt/4683.html</guid>
  <pubDate>Tue, 31 May 2011 22:31:42 GMT</pubDate>
  <title>How to use APNs with easyapns.com Third Party Web Service</title>
  <author>a6155</author>  <link>http://icampus.blogs.ua.sapo.pt/4683.html</link>
  <description>&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://vimeo.com/8481383&quot;&gt;EasyAPNs - Getting everything setup&lt;/a&gt; from &lt;a href=&quot;http://vimeo.com/raphaelcaixeta&quot;&gt;Raphael Caixeta&lt;/a&gt; on &lt;a href=&quot;http://vimeo.com&quot;&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;In this video tutorial, Caixeta (2010) shows &amp;quot;&lt;i&gt;... how to get everything working properly for &lt;/i&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.easyapns.com&quot;&gt;&lt;i&gt;www.easyapns.com&lt;/i&gt;&lt;/a&gt;&lt;i&gt;&amp;quot;&lt;/i&gt;. With this Third Party Web-Service, we will be able to &amp;quot;&lt;i&gt;... easily get started with Apple Push Notifications, giving us all the code necessary to get started&lt;/i&gt;&amp;quot;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;u&gt;So, let&apos;s see what we can do with EASYAPNs...&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description>
</item>
<item>
  <guid isPermaLink='true'>http://napraia.blogs.ua.sapo.pt/6295.html</guid>
  <pubDate>Wed, 15 Sep 2010 13:12:19 GMT</pubDate>
  <title>Hipstamatic fun - Sleeping?</title>
  <author>carlossantos</author>  <link>http://napraia.blogs.ua.sapo.pt/6295.html</link>
  <description>&lt;p&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://fotos.ua.sapo.pt/pMbKlGmuNwZZV6WCVveg&quot;&gt;&lt;img width=&quot;400&quot; height=&quot;400&quot; border=&quot;0&quot; alt=&quot;&quot; style=&quot;border-color:black;&quot; src=&quot;http://fotos.ua.sapo.pt/pMbKlGmuNwZZV6WCVveg/400x400&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
</item>
<item>
  <guid isPermaLink='true'>http://weontv.blogs.ua.sapo.pt/972.html</guid>
  <pubDate>Wed, 12 May 2010 16:40:46 GMT</pubDate>
  <title>WeOnTV mobile já disponível</title>
  <author>almeida</author>  <link>http://weontv.blogs.ua.sapo.pt/972.html</link>
  <description>&lt;p&gt;Tal como prometido, estivemos a ultimar a aplicação mobile para ser utilizada em paralelo com o WeOnTV.&lt;/p&gt;&lt;br /&gt;&lt;p&gt;Este SID (&amp;quot;Secondary Input Device&amp;quot;) permite utilzar um telemóvel iPhone, Android ou Symbian como teclado para o envio de mensagens para conversas que estejam activas no WeOnTV. Podendo aproveitar os teclados virtuais, físicos, a velocidade de processamento do telemóvel e o T9, a experiência de enviar mensagens melhora significativamente.  Mas queremos o vosso feedback!&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;Como posso utilizar?&lt;/b&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;Muito simples. Bastam 3 simples passos:&lt;/p&gt;&lt;br /&gt;&lt;ol&gt;&lt;br /&gt;    &lt;li&gt;Ligar (caso ainda não esteja) o WeOnTV na box e iniciar pelo menos uma conversa;&lt;/li&gt;&lt;br /&gt;    &lt;li&gt;&lt;b&gt;Ligar o telemóvel à rede Wi-Fi do Meo&lt;/b&gt; em casa;&lt;/li&gt;&lt;br /&gt;    &lt;li&gt;Aceder no browser do telemóvel a: &lt;a target=&quot;_blank&quot; href=&quot;http://a.md/weon&quot;&gt;http://a.md/weon&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;p&gt;A aplicação apresenta automaticamente a lista de membros da casa com sessões activas. De seguida basta seleccionar o membro e enviar mensagens. &lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://fotos.ua.sapo.pt:80/zDJwlay0jtyY5fcz2kOj&quot;&gt;&lt;img height=&quot;240&quot; width=&quot;135&quot; border=&quot;0&quot; style=&quot;border-color: black;&quot; alt=&quot;Selecção de membro no WeOnTV mobile&quot; src=&quot;http://fotos.ua.sapo.pt:80/zDJwlay0jtyY5fcz2kOj/s320x240&quot; /&gt;&lt;/a&gt;       &lt;a target=&quot;_blank&quot; href=&quot;http://fotos.ua.sapo.pt:80/jigstDKVtPkqCyQUTksZ&quot;&gt;&lt;img border=&quot;0&quot; style=&quot;border-color: black;&quot; alt=&quot;WeOnTV  mobile - interface de envio demensagens&quot; src=&quot;http://fotos.ua.sapo.pt:80/jigstDKVtPkqCyQUTksZ/s320x240&quot; /&gt;&lt;/a&gt;       &lt;a href=&quot;http://fotos.ua.sapo.pt:80/wzIPzo6ONBbqFZvqcF3y&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://fotos.ua.sapo.pt:80/wzIPzo6ONBbqFZvqcF3y/s320x240&quot; alt=&quot;WeOnTV mobile - processo de envio de mensagens&quot; style=&quot;border-color: black;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;Como se poderá ver na televisão as mensagens enviadas aparecem na tab  da respectiva conversa.&lt;/p&gt;&lt;br /&gt;&lt;p&gt;Atenção que o WeOnTV mobile apenas funciona se o telemóvel estiver ligado à rede Wi-Fi do meo lá de casa e o WeOnTV estiver iniciado na TV. Os alertas aparecem para nos avisar.&lt;a target=&quot;_blank&quot; href=&quot;http://fotos.ua.sapo.pt:80/uZaK0B89vStlZKLlfIhd&quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;img border=&quot;0&quot; style=&quot;border-color: black;&quot; alt=&quot;WeOnTV mobile - é necessário estarligado na rede Wi-fi Meo&quot; src=&quot;http://fotos.ua.sapo.pt:80/uZaK0B89vStlZKLlfIhd/s320x240&quot; /&gt;       &lt;img border=&quot;0&quot; src=&quot;http://fotos.ua.sapo.pt:80/fFC9yCeGLAS9OnmTrwno/s320x240&quot; alt=&quot;WeOnTV mobile - alerta sem membros&quot; style=&quot;border-color: black;&quot; /&gt;       &lt;a href=&quot;http://fotos.ua.sapo.pt:80/IQKAObAfOiuR33p7EBsD&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://fotos.ua.sapo.pt:80/IQKAObAfOiuR33p7EBsD/s320x240&quot; alt=&quot;WeOnTV mobile - sem conversas activas&quot; style=&quot;border-color: black;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;Boas mensagens!&lt;/p&gt;</description>
</item>
<item>
  <guid isPermaLink='true'>http://vimafe.blogs.ua.sapo.pt/1230.html</guid>
  <pubDate>Sun, 27 Sep 2009 18:23:33 GMT</pubDate>
  <title>MobilEdu, a campus mobile suite</title>
  <author>a6155</author>  <link>http://vimafe.blogs.ua.sapo.pt/1230.html</link>
  <description>&lt;p&gt;&lt;img width=&quot;128&quot; height=&quot;67&quot; hspace=&quot;3&quot; border=&quot;0&quot; align=&quot;left&quot; style=&quot;border-color:black;&quot; alt=&quot;&quot; src=&quot;http://fotos.ua.sapo.pt/1qs0VgEmpUrTZKU0hSiK/340x255&quot; /&gt; &amp;quot;&lt;i&gt;The time has come to fully integrate the academic world with the technologies of today. We aim to enrich the collegiate experience by bringing virtually every facet of campus life to the palm of your hand. &lt;/i&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;i&gt;With the widespread popularity of devices like the iPhone, students and faculty alike will have unprecedented access to everything academia has to offer. &lt;/i&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;i&gt;With the widespread popularity of devices like the iPhone, students and faculty alike will have unprecedented access to everything academia has to offer.&lt;/i&gt; &amp;quot; &lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.medu.com/&quot;&gt;Read more...&lt;/a&gt;&lt;/p&gt;</description>
</item>
<item>
  <guid isPermaLink='true'>http://ratodebiblioteca.blogs.ua.sapo.pt/54059.html</guid>
  <pubDate>Wed, 03 Jun 2009 00:34:00 GMT</pubDate>
  <title>Os serviços web das bibliotecas e os dispositivos móveis... mobile libraries</title>
  <author>pedroprincipe</author>  <link>http://ratodebiblioteca.blogs.ua.sapo.pt/54059.html</link>
  <description>Devo confessar que tenho andado a tentar acompanhar umas coisas sobre &quot;mobile&quot;! Procurando estar atento aos serviços que as bibliotecas prestam a utilizadores com dispositivos móveis, e concretamente tentando perceber de que modo é que as bibliotecas estão a preocupar-se em assegurar que os seus recursos web, nomeadamente os seus portais e catálogos, fiquem devidamente acessíveis nestes dispositivos.&lt;br /&gt;Partilho este interesse como justificação da vontade em destacar este vídeo promocional que tive agora conhecimento via &lt;a href=&quot;http://tametheweb.com/2009/06/02/ocpl-iphone-ipod-touch-app/&quot;&gt;Tame The Web&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/991qqTnvqfo&amp;amp;hl=pt-br&amp;amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/991qqTnvqfo&amp;amp;hl=pt-br&amp;amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;br /&gt;&lt;br /&gt;Para os mais interessados, digo que vale a pena seguir o blog Mobile Libraries em &lt;a href=&quot;http://mobile-libraries.blogspot.com&quot;&gt;http://mobile-libraries.blogspot.com&lt;/a&gt;.&lt;br /&gt;Nota final: Depois de escrever este post lembrei-me que há uns meses tinha lido algo sobre a utilização de pda&apos;s nas bibliotecas da área da saúde. Fui recuperar essa dica e cá está: foi uma apresentação nas Jornadas da APDIS do ano passado - &quot;&lt;a href=&quot;http://www.apdis.org/jornadas/2008/paula_saraiva.pdf&quot;&gt;Implementação de serviços de referência para pda&apos;s nas bibliotecas de saúde&lt;/a&gt;&quot;.</description>
</item>
</channel>
</rss>
