<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>api &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/api/</link>
	<description>Feed of posts on WordPress.com tagged "api"</description>
	<pubDate>Fri, 05 Sep 2008 07:33:45 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[PHOENIX]]></title>
<link>http://lukmanhardy.wordpress.com/?p=35</link>
<pubDate>Thu, 04 Sep 2008 14:42:37 +0000</pubDate>
<dc:creator>lukmanhardy</dc:creator>
<guid>http://lukmanhardy.wordpress.com/?p=35</guid>
<description><![CDATA[Phoenix
Phoenix berasal dari mitologi Mesir. Phoenix merupakan burung api abadi yang tidak bisa mati]]></description>
<content:encoded><![CDATA[[caption id="attachment_36" align="alignleft" width="300" caption="Phoenix"]<img class="size-medium wp-image-36" title="1788244" src="http://lukmanhardy.wordpress.com/files/2008/09/1788244.jpg?w=300" alt="Phoenix" width="300" height="247" />[/caption]
<p>Phoenix berasal dari mitologi Mesir. Phoenix merupakan burung api abadi yang tidak bisa mati, Menurut mitologinya Phoenix merupakan burung api jantan yang sudah hidup selama 500, 1461 atau 12.594 tahun lamanya. Ketika waktu kematiannya tiba, Phoenix biasanya menyadari akan kematiannya kemudian ia akan membangun sebuah sarang untuk dirinya dan tubuhnya akan berkobar terbakar beserta sarangnya kemudian dari abu sisa pembakaran tersebut terlahir Phoenix baru dan hal itu terjadi terus menerus sehingga ia hidup abadi.</p>
<p>Ketika Phoenix terluka ia akan menyembuhkan lukanya sendiri dan beregenerasi sehingga hal ini membuatnya tidak terkalahkan. Phoenix merupakan simbol kebangkitan, keabadian, dan kehidupan setelah mati.</p>
<p>Phoenix digambarkan memiliki bulu yang sangat indah dengan warna merah emas. Dalam mitologi Cina juga terdapat burung yang cirinya tak jauh berbeda yaitu Feng Huang.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Trans2Quik C# API Wrapper]]></title>
<link>http://heaventrading.wordpress.com/?p=70</link>
<pubDate>Thu, 04 Sep 2008 07:31:20 +0000</pubDate>
<dc:creator>Angel's death</dc:creator>
<guid>http://heaventrading.wordpress.com/?p=70</guid>
<description><![CDATA[Вот код обертки API для выставления заявок TRANS2QUIK.DLL.
Пока]]></description>
<content:encoded><![CDATA[<p>Вот код обертки API для выставления заявок TRANS2QUIK.DLL.</p>
<p>Пока реализован только метод Connect(), но все экспортные функции доступны.</p>
<p>+ небольшой пример как использовать CallBack функции.<br />
<code> public enum T2QResult<br />
    {<br />
        Success = 0,<br />
        Failed = 1,<br />
        QuikTerminalNotFound = 2,<br />
        DllVersionNotSupported = 3,<br />
        DllAlreadyConnectedToQuik = 4,<br />
        WrongSyntax = 5,<br />
        QuikNotConnected = 6,<br />
        DllNotConnected = 7,<br />
        QuikConnected = 8,<br />
        QuikDisconnected = 9,<br />
        DllConnected = 10,<br />
        DllDisconnected = 11,<br />
        MemoryAllocationError = 12,<br />
        WrongConnectionHandle = 13,<br />
        WrongInputParams = 14<br />
    }    </p>
<p>    public static class Trans2Quik<br />
    {<br />
        #region DLL Import<br />
        [DllImport("TRANS2QUIK.dll")]<br />
        public static extern int TRANS2QUIK_CONNECT<br />
        (<br />
            String lpcstrConnectionParamsString,<br />
            out Int32 pnExtendedErrorCode,<br />
            [MarshalAs(UnmanagedType.LPStr)] StringBuilder lpstrErrorMessage,<br />
            UInt32 dwErrorMessageSize<br />
        );</p>
<p>        [DllImport("TRANS2QUIK.dll")]<br />
        public static extern int TRANS2QUIK_DISCONNECT<br />
        (<br />
            out Int32 pnExtendedErrorCode,<br />
            [MarshalAs(UnmanagedType.LPStr)] StringBuilder lpstrErrorMessage,<br />
            UInt32 dwErrorMessageSize<br />
        );</p>
<p>        [DllImport("TRANS2QUIK.dll")]<br />
        public static extern int TRANS2QUIK_IS_QUIK_CONNECTED<br />
        (<br />
            out Int32 pnExtendedErrorCode,<br />
            [MarshalAs(UnmanagedType.LPStr)] StringBuilder lpstrErrorMessage,<br />
            UInt32 dwErrorMessageSize<br />
        );</p>
<p>        [DllImport("TRANS2QUIK.dll")]<br />
        public static extern int TRANS2QUIK_IS_DLL_CONNECTED<br />
        (<br />
            out Int32 pnExtendedErrorCode,<br />
            [MarshalAs(UnmanagedType.LPStr)] StringBuilder lpstrErrorMessage,<br />
            UInt32 dwErrorMessageSize<br />
        );</p>
<p>        [DllImport("TRANS2QUIK.dll")]<br />
        static extern int TRANS2QUIK_SEND_SYNC_TRANSACTION<br />
        (<br />
            String lpstTransactionString,<br />
            out Int32 pnReplyCode,<br />
            out UInt32 pdwTransId,<br />
            out Double pdOrderNum,<br />
            [MarshalAs(UnmanagedType.LPStr)] StringBuilder lpstrResultMessage,<br />
            UInt32 dwResultMessageSize,<br />
            out Int32 pnExtendedErrorCode,<br />
            [MarshalAs(UnmanagedType.LPStr)] StringBuilder lpstErrorMessage,<br />
            UInt32 dwErrorMessageSize<br />
        );<br />
<!--more--><br />
        [DllImport("TRANS2QUIK.dll")]<br />
        static extern int TRANS2QUIK_SEND_ASYNC_TRANSACTION<br />
        (<br />
            String lpstTransactionString,<br />
            out Int32 pnExtendedErrorCode,<br />
            [MarshalAs(UnmanagedType.LPStr)] StringBuilder lpstErrorMessage,<br />
            UInt32 dwErrorMessageSize<br />
        );</p>
<p>        public delegate void TRANS2QUIK_CONNECTION_STATUS_CALLBACK<br />
        (<br />
            Int32 nConnectionEvent,<br />
            Int32 nExtendedErrorCode,<br />
            String lpstrInfoMessage<br />
        );</p>
<p>        [DllImport("TRANS2QUIK.dll")]<br />
        public static extern int TRANS2QUIK_SET_CONNECTION_STATUS_CALLBACK<br />
        (<br />
            TRANS2QUIK_CONNECTION_STATUS_CALLBACK ConnStatusCallBack,<br />
            out Int32 pnExtendedErrorCode,<br />
            [MarshalAs(UnmanagedType.LPStr)] StringBuilder lpstErrorMessage,<br />
            UInt32 dwErrorMessageSize<br />
        );</p>
<p>        public delegate void TRANS2QUIK_TRANSACTION_REPLY_CALLBACK<br />
        (<br />
            Int32 nTransactionResult,<br />
            Int32 nTransactionExtendedErrorCode,<br />
            Int32 nTransactionReplyCode,<br />
            UInt32 dwTransId,<br />
            Double dOrderNum,<br />
            String lpstrTransactionReplyMessage<br />
        );</p>
<p>        [DllImport("TRANS2QUIK.dll")]<br />
        public static extern int TRANS2QUIK_SET_TRANSACTIONS_REPLY_CALLBACK<br />
        (<br />
            TRANS2QUIK_TRANSACTION_REPLY_CALLBACK TransCallBack,<br />
            out Int32 pnExtendedErrorCode,<br />
            [MarshalAs(UnmanagedType.LPStr)] StringBuilder lpstErrorMessage,<br />
            UInt32 dwErrorMessageSize<br />
        );<br />
        #endregion</p>
<p>        public static T2QResult Connect(string QuikDirectory)<br />
        {<br />
            int ErrCode = 0;<br />
            StringBuilder sb = new StringBuilder(256);<br />
            int res = TRANS2QUIK_CONNECT(QuikDirectory, out ErrCode, sb, 256);</p>
<p>            switch (res)<br />
            {<br />
                case (int)T2QResult.Success:<br />
                    return T2QResult.Success;</p>
<p>                case (int) T2QResult.QuikTerminalNotFound:<br />
                    return T2QResult.QuikTerminalNotFound;</p>
<p>                case (int) T2QResult.DllVersionNotSupported:<br />
                    return T2QResult.DllVersionNotSupported;</p>
<p>                case (int) T2QResult.DllAlreadyConnectedToQuik:<br />
                    return T2QResult.DllAlreadyConnectedToQuik;</p>
<p>                default:<br />
                    throw new BrokerException(sb.AppendFormat(" ErrorCode: {0}", ErrCode).ToString());<br />
            }<br />
        }<br />
    }</code></p>
<p>Пример как установить CallBack функции для статуса сервера.<br />
<code><br />
//Описывает функцию обратного вызова<br />
        public void SendTransactionReply  (<br />
                Int32 nTransactionResult,<br />
                Int32 nTransactionExtendedErrorCode,<br />
                Int32 nTransactionReplyCode,<br />
                UInt32 dwTransId,<br />
                Double dOrderNum,<br />
                String lpstrTransactionReplyMessage)<br />
        {<br />
            QDebugger.Trace("TransCallBackReply", lpstrTransactionReplyMessage);<br />
        }</p>
<p>//Устанавливаем соединение и функцию обратного вызова</p>
<p>            string connstr = Args.ToString();<br />
            T2QResult ret = Trans2Quik.Connect(connstr);</p>
<p>            if (ret == T2QResult.Success &#124;&#124; !CallBacksSet)<br />
            {<br />
               int er = 0;<br />
               StringBuilder sb = new StringBuilder(256);</p>
<p>               er = 0;<br />
               StringBuilder sb2 = new StringBuilder(256);<br />
               r = Trans2Quik.TRANS2QUIK_SET_CONNECTION_STATUS_CALLBACK(<br />
                   new Trans2Quik.TRANS2QUIK_CONNECTION_STATUS_CALLBACK(ServerStatusChanged),<br />
                   out er,<br />
                   sb2,<br />
                   256);</p>
<p>               if (r != (int)T2QResult.Success) throw new Exception(sb.ToString());<br />
            }<br />
</code></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Consolidating Multimedia API Descriptions And Releasing New Ones]]></title>
<link>http://forsalebylocals.wordpress.com/?p=523</link>
<pubDate>Thu, 04 Sep 2008 00:44:26 +0000</pubDate>
<dc:creator>forsalebylocals</dc:creator>
<guid>http://forsalebylocals.wordpress.com/?p=523</guid>
<description><![CDATA[We are consolidating all of our Multimedia and Marketing APIs for web developers over at api.forsale]]></description>
<content:encoded><![CDATA[<p>We are consolidating all of our <a href="http://api.forsalebylocals.com">Multimedia and Marketing APIs for web developers</a> over at api.forsalebylocals.com. We still have a lot of work to do there (especially on the home page) but you'll have a lot more ability to find information about the developers APIs that you need if we have a consolidated location for them off our blog.  The nice part is that we have a uniform URL for being able find the right API and we'll be adding a lot of supplemental information that will help web developers get the most from the API set.</p>
<p>With that, on Thursday we'll be making a number of new customer facing APIs available. These APIs will form the basis for being able to organize content into folders, know what folders exist,  create new folders, and move the content to different locations.  We are also planning to give developers the ability to programatically add Youtube, Real Estate Shows, and Vidlisting content to folders via APIs.</p>
<p>The API overview documentation is already live on some of these APIs:</p>
<p><strong><a href="http://api.forsalebylocals.com/docs/createfolder">Create new folders</a>:</strong> This api can be found at http://api.forsalebylocals.com/docs/createfolder (API Call live at noon on Thursday)</p>
<p><strong><a href="http://api.forsalebylocals.com/docs/getlistofallfolders">Get list of existing folders</a>:</strong> This api can be found at http://api.forsalebylocals.com/docs/getlistofallfolders (API Call live at noon on Thursday)</p>
<p><strong><a href="http://api.forsalebylocals.com/docs/movecontenttofolder">Move content to different folders</a>:</strong> This api can be found at http://api.forsalebylocals.com/docs/movecontenttofolder (API Call live at noon on Thursday)</p>
<p>Lots more API capabilities are coming online over the next month.  Stay tuned....</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Intanto che aspettiamo Ginevra- Ovverosia il tessuto di quattro fate-faidate... e un' apprendista]]></title>
<link>http://fernirosso.wordpress.com/?p=1889</link>
<pubDate>Wed, 03 Sep 2008 15:16:45 +0000</pubDate>
<dc:creator>fernirosso</dc:creator>
<guid>http://fernirosso.wordpress.com/?p=1889</guid>
<description><![CDATA[elisabetta turchina

ho preparato una tela fresca fresca

l&#8217;ho tessuta di prati e primavera
 i]]></description>
<content:encoded><![CDATA[<p><span style="color:#99ccff;"><em>elisabetta turchina</em></span></p>
<p><a href="http://img169.imageshack.us/img169/6186/fiore1editzb5.jpg"><img class="alignnone" src="http://img169.imageshack.us/img169/6186/fiore1editzb5.jpg" alt="" width="454" height="472" /></a></p>
<p><span style="color:#cc99ff;"><strong><span>ho preparato una tela fresca fresca<br />
</span></strong></span></p>
<p><span style="color:#cc99ff;"><strong><span>l'ho tessuta di prati e primavera</span></strong></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#cc99ff;"> <span style="font-size:11pt;">intinta qua e là con schizzi di cielo e di pervinca </span></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#cc99ff;"><span style="font-size:11pt;">morbidissime nuvole di mussola </span></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#cc99ff;"><span style="font-size:11pt;">a forma di capretta una bella bicicletta<br />
</span></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#cc99ff;"><span style="font-size:11pt;">per ogni suo piede una tenera scarpetta di taffetas.<br />
</span></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#cc99ff;"><span style="font-size:11pt;">Ho preso la misura giusto giusto dall'immenso </span></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#cc99ff;"><span style="font-size:11pt;">dall'azzurro dei suoi occhi appena appena sbocciati.</span></span></p>
<p class="MsoNormal" style="text-align:justify;"><a href="http://i260.photobucket.com/albums/ii23/kiane25/Anne_Geddes_39.jpg"><img class="alignnone" src="http://i260.photobucket.com/albums/ii23/kiane25/Anne_Geddes_39.jpg" alt="" width="454" height="338" /></a></p>
<p class="MsoNormal" style="text-align:justify;">
<p class="MsoNormal" style="text-align:justify;"><span style="color:#ffcc99;"><strong>Su una morbida coperta liscia di raso verde  lascio </strong></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#ffcc99;"><strong>il caldo acceso di un vivo giallo girasole</strong></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#ffcc99;"><strong> una ballata di grilli cantori e il soprano di una cicala</strong></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#ffcc99;"><strong> dentro un laghetto di fresco piquet<br />
</strong></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#ffcc99;"><strong>una cova di sogni da pescare tra pesci rossi e stelle di mare</strong></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#ffcc99;"><strong><span>ricamate con amore  filo per filo dal gomitolo del cuore<br />
</span></strong></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#ffcc99;"><span style="font-size:11pt;">e </span></span></p>
<p class="MsoNormal" style="text-align:justify;">
<p class="MsoNormal" style="text-align:justify;"><a href="http://big5.wallcoo.com/photograph/annegeddes_1280x1024/images/AnneGeddes_Wallpaper1280_168a.jpg"><img class="alignnone" src="http://big5.wallcoo.com/photograph/annegeddes_1280x1024/images/AnneGeddes_Wallpaper1280_168a.jpg" alt="" width="453" height="361" /></a></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#cc99ff;"><span style="font-size:11pt;">lassù</span></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#cc99ff;"><span style="font-size:11pt;"> lungo l'orlo del saluto </span></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#cc99ff;"><span style="font-size:11pt;">lascio un volo di airone a sorreggere l'aquilone di un suo tenero sorriso<br />
</span></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#cc99ff;"> <span style="font-size:11pt;">poco più in là un nido di rondini e colibrì</span></span></p>
<p class="MsoNormal" style="text-align:justify;"><a href="http://nuke.genitoriscuolainsieme.org/Portals/0/ELENCHO%20SCUOLE/bambino1.jpg"><img class="alignnone" src="http://nuke.genitoriscuolainsieme.org/Portals/0/ELENCHO%20SCUOLE/bambino1.jpg" alt="" width="453" height="231" /></a></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#cc99ff;"><span style="font-size:11pt;">è il tetto di una casa</span></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#cc99ff;"><span style="font-size:11pt;">una  lumaca sognatrice<br />
</span></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#cc99ff;"><span style="font-size:11pt;">appena nata  si affaccia sul</span></span><span style="color:#cc99ff;"><span style="font-size:11pt;">l'alba </span></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="color:#cc99ff;"><span style="font-size:11pt;">di ogni suo dì.</span></span></p>
<p><!--[if gte mso 9]&#62;  Normal 0 14   false false false        MicrosoftInternetExplorer4  &#60;![endif]--><!--[if gte mso 9]&#62;   &#60;![endif]--></p>
<p><!--[if gte mso 10]&#62;--></p>
<p class="MsoNormal"><span style="color:#ffff99;"><em>fata ferni</em></span></p>
<p class="MsoNormal"><a href="http://big5.wallcoo.com/photograph/annegeddes_1280x1024/images/AnneGeddes_Wallpaper1280_209.jpg"><img class="alignnone" src="http://big5.wallcoo.com/photograph/annegeddes_1280x1024/images/AnneGeddes_Wallpaper1280_209.jpg" alt="" width="455" height="361" /></a></p>
<p class="MsoNormal"><span style="color:#ff00ff;">Une petit’ âme<br />
Guenièvre<br />
un pétal de vie<br />
une promesse de respirer<br />
un’éspoir d’effeuiller<br />
doucement<br />
un murmure de quelques vers<br />
pour ne pas te réveiller<br />
encore.</span></p>
<p><span style="color:#ff00ff;"><span style="color:#ffcc00;"><em> fata rose</em></span></span></p>
<p><a href="http://i32.tinypic.com/3499b3l.jpg"><img class="alignnone" src="http://i32.tinypic.com/3499b3l.jpg" alt="" width="458" height="364" /></a></p>
<p><span style="color:#800080;">a tibe, fitza mea,<br />
a ti donare alas d’astore<br />
chi colan furrìande s’aghera<br />
moghende sas nues<br />
ghettandesi<br />
intr’e sa bida<br />
chin tirriàdas de bentu…</span></p>
<p><a href="http://i238.photobucket.com/albums/ff11/eeyore53/Babys%20and%20Children/AnneGeddes7.jpg"><img class="alignnone" src="http://i238.photobucket.com/albums/ff11/eeyore53/Babys%20and%20Children/AnneGeddes7.jpg" alt="" width="455" height="341" /></a></p>
<p><span style="color:#800080;">…menduledda,<br />
froricheddu de beranu…<br />
cras manzanu<br />
b’est su sole<br />
si poden gai<br />
mirare sos ocros tuos<br />
e sas pinturas<br />
peri chircande<br />
ballos e sintzos<br />
petzi pro tene<br />
nobos e galanos.. adìosu, a crasa e a metzus biere!</span></p>
<p class="MsoNormal"><span style="color:#800080;"><span style="color:#ffcc00;"><em> fata api</em></span></span></p>
<p class="MsoNormal">
<p class="MsoNormal"><a href="http://blog-static.excite.eu/it/blogs/jessica/share/img/Anne%20Geddes%20foto%200058%20(by%20Mortella).jpg"><img class="alignnone" src="http://blog-static.excite.eu/it/blogs/jessica/share/img/Anne%20Geddes%20foto%200058%20(by%20Mortella).jpg" alt="" width="450" height="295" /></a></p>
<p class="MsoNormal">
<p class="MsoNormal"><span style="color:#ff99cc;">Isé picinìnô<br />
un miràcol del Signùr<br />
E pensà che tè sét za tötô lé<br />
programàdô<br />
i caèi i öcc la buchìnô<br />
e forse apò ‘l caràter<br />
Tè laùret dé e nòt<br />
a ricamàt<br />
a belazìne<br />
che nϋsϋ s’ancòrz<br />
gnà la tò mamô che la dòrmô<br />
gnà la nónô che zà la ta öl bé.</span></p>
<p class="MsoNormal"><span style="color:#cc99ff;"><em>fata rose</em></span></p>
<p class="MsoNormal"><span style="color:#ff99cc;"> </span></p>
<p class="MsoNormal"><a href="http://www.fiuh.it/images/stories/cards/anne_geddes_2007-08.jpg"><img class="alignnone" src="http://www.fiuh.it/images/stories/cards/anne_geddes_2007-08.jpg" alt="" width="448" height="470" /></a></p>
<p class="MsoNormal"><span style="color:#00ff00;">un abito cucito a mandorlina, una morbida vestina per ginevra piccolina, tessuto di fate e sete di sogno, lino e merletto per il piccolo letto, con figure in crinolina per una splendida cara bambina, un nido d'affetto, un nodo di voci, un mazzetto di baci e ghirlande di auguri, un coro di bene e una stoffa di trame, una storia e un ricamo d’amore.</span></p>
<p class="MsoNormal"><a href="http://palaisdesdelices.canalblog.com/images/AnneGeddes_Wallpaper091.jpg"><img class="alignnone" src="http://palaisdesdelices.canalblog.com/images/AnneGeddes_Wallpaper091.jpg" alt="" width="449" height="334" /></a></p>
<p class="MsoNormal"><span style="color:#ff9900;">Là dietro i tuoi occhi<br />
si accenderanno stelle addormentate<br />
si involeranno cascate nei colori dell'iride<br />
abiterai la casa del respiro<br />
sarai figlia di luce e acqua di mare</span></p>
<p class="MsoNormal"><span style="color:#ff0000;"><em>apprendista fata elina</em></span></p>
<p class="MsoNormal"><a href="http://media.panorama.it/media/foto/2007/06/04/482ec2073196e_normal.jpg"><img class="alignnone" src="http://media.panorama.it/media/foto/2007/06/04/482ec2073196e_normal.jpg" alt="" width="453" height="360" /></a></p>
<p><span style="color:#0000ff;">U’ Scazzamurrill</span></p>
<p><span style="color:#0000ff;">Stanotte è arrivato<br />
non ha rotto i vetri delle finestre<br />
nè si è seduto sulla mia pancia addormentata<br />
gli avevo lasciato dei sassolini nelle  pantofole<br />
un paio di scarpe da calzare<br />
mi ha chiesto vuoi cocci o soldi<br />
cocci gli ho risposto<br />
Ha regalato dolcetti e monete per la mia bambina</span></p>
<p><span style="color:#008000;"><em>fata camilla</em></span></p>
<p class="MsoNormal">
<p class="MsoNormal"><a href="http://img39.picoodle.com/img/img39/6/10/26/f_AnneGeddesWm_4d7f70d.jpg"><img class="alignnone" src="http://img39.picoodle.com/img/img39/6/10/26/f_AnneGeddesWm_4d7f70d.jpg" alt="" width="455" height="570" /></a></p>
<p class="MsoNormal"><em>Rose con la sua ....zucca fatata..e chi la smuove e la sveglia più:Capace di restare addormentata per 400 giorni come fossero due minuti,solo due minuti.<br />
</em></p>
<p class="MsoNormal"><a href="http://www.elevezundragon.com/fondecran/fond/Anne-Geddes-b-b-s.jpg"><img class="alignnone" src="http://www.elevezundragon.com/fondecran/fond/Anne-Geddes-b-b-s.jpg" alt="" width="454" height="339" /></a></p>
<p class="MsoNormal"><em>api,rose,ferni in confezione da viaggio.</em></p>
<p class="MsoNormal"><a href="http://cybergifts.com/catalog/images/annegeddes/card_hydrangiss-babyiss.jpg"><img class="alignnone" src="http://cybergifts.com/catalog/images/annegeddes/card_hydrangiss-babyiss.jpg" alt="" width="451" height="451" /></a></p>
<p class="MsoNormal"><em>fata camilla...che non si vuol far trovare e...elina. la fata più piccolina..solo 157   anni</em></p>
<p class="MsoNormal"><a href="http://www.familymagazinegroup.com/stories/images/878_AnneGeddes2.jpg"><img class="alignnone" src="http://www.familymagazinegroup.com/stories/images/878_AnneGeddes2.jpg" alt="" width="454" height="302" /></a></p>
<p class="MsoNormal">
<p class="MsoNormal">
<p class="MsoNormal" style="text-align:justify;">
]]></content:encoded>
</item>
<item>
<title><![CDATA[Sparizione Api ... fra 4 anni tocca a noi?]]></title>
<link>http://monparadis.wordpress.com/?p=446</link>
<pubDate>Wed, 03 Sep 2008 13:47:09 +0000</pubDate>
<dc:creator>Justine</dc:creator>
<guid>http://monparadis.wordpress.com/?p=446</guid>
<description><![CDATA[LE API SPARISCONO e nel giro di 4 ANNI TOCCHERA&#8217; A NOI, secondo Einstein.

2008+4 = 2012 il Mi]]></description>
<content:encoded><![CDATA[<p><a href="http://monparadis.files.wordpress.com/2008/09/api.jpg"></a><a href="http://monparadis.wordpress.com/files/2008/09/apeny2.jpg"></a><strong>LE API SPARISCONO e nel giro di 4 ANNI TOCCHERA' A NOI, <span style="text-decoration:underline;">secondo Einstein</span>.</strong></p>
<p><img class="aligncenter size-medium wp-image-513" src="http://monparadis.wordpress.com/files/2008/09/api.jpg?w=300" alt="" width="300" height="225" /></p>
<p><strong>2008+4 = 2012 il Mistero si infittisce ...!</strong></p>
<p><!--more--></p>
<p><a href="http://monparadis.wordpress.com/files/2008/09/apeny2.jpg"><img class="alignleft size-medium wp-image-463" src="http://monparadis.wordpress.com/files/2008/09/apeny2.jpg?w=70" alt="" width="70" height="300" /></a>Ormai è ufficiale: tutte le associazioni denunciano la sparizione dal nostro territorio (e non solo) delle API. Prima di noi avevano denunciato tale problema gli Americani (i primi ad annunciare tale problema) seguiti da spagnoli, portoghesi, polacchi, grechi, francesi, tedeschi, scozzesi ecc. <a href="http://www.lastampa.it/_web/cmstp/tmplrubriche/scienza/grubrica.asp?ID_blog=38&#38;ID_articolo=123&#38;ID_sezione=243&#38;sezione=News" target="_blank">Leggi</a></p>
<p>Questo è un fatto gravissimo!</p>
<p>Sono decine di migliaia gli alveari spariti in pianura padana in Italia, mentre in Svizzera dopo l'inverno caldo si è verificato un crollo del 25% della popolazione di api ed in Montana negli Stati Uniti la moria è arrivata al 75%. E' la Coldiretti a tracciare il quadro di una vera ecatombe mondiale per le api segnalata oltre che in Italia anche in 27 Stati degli Usa, in Brasile, Canada, Australia e in molti Paesi Europei come Svizzera, Germania ed Inghilterra.</p>
<p>Si tratta di una situazione che mette in discussione l'equilibrio naturale globale con rischi anche per la salute e l'alimentazione che dipende per oltre un terzo da coltivazioni impollinate attraverso il lavoro di insetti, al quale proprio le api concorrono per l'80 per cento .</p>
<p><strong>Prodotti come mele, pere, mandorle, agrumi, pesche, kiwi, castagne, ciliegie, albicocche, susine, meloni, cocomeri, pomodori, zucchine, soia, girasole, cotone e, colza - spiega la Coldiretti - dipendono completamente o in parte dalle api per la produzione dei frutti.</strong> <strong>Ma le api sono utili anche per la produzione di carne con l'azione impollinatrice che svolgono nei confronti delle colture </strong><a href="http://monparadis.wordpress.com/files/2008/09/apeny2.jpg"><strong><img class="alignright size-medium wp-image-463" src="http://monparadis.wordpress.com/files/2008/09/apeny2.jpg?w=70" alt="" width="70" height="300" /></strong></a><strong>foraggere da seme come l'erba medica ed il trifoglio fondamentali per i prati destinati agli animali da allevamento. Anche la grande maggioranza delle colture orticole da seme si possono riprodurre grazie alle api come l'aglio, la carota, i cavoli e la cipolla.</strong></p>
<p>Se non sarà interrotto il trend che ha portato in pochissimo tempo alla scomparsa solo negli Stati Uniti di un quarto degli alveari con 15 miliardi di api, le conseguenze ambientali sarebbero disastrose.</p>
<p>L'allarme lanciato in molte regioni dalla Lombardia al Piemonte, dal Veneto al Friuli Venezia Giulia dimostra che la strage, definita dagli scienziati statunitensi come “Colony Collapse Disorder” (CCD), ha effetti gravi anche in Italia dove a rischio - sostiene la Coldiretti - è una popolazione stimata in circa 50 miliardi di api in oltre 1 milione di alveari che offrono “gratuitamente” un valore del servizio di impollinazione alle piante agricole lungo tutto lo Stivale stimato pari a 2,5 miliardi di Euro all'anno.</p>
<p>Quali sono le cause di questa moria di Api?<br />
Sono gli insetticida utilizzati nelle campagne, gli Ogm e le onde magnetiche provocate dai cellulari. Infatti le Onde della Telefonia cellulare rendono le api incapaci di ritrovare la strada di casa portandole a morire lontano magari mangiate da altri animali.</p>
<p><a href="http://monparadis.wordpress.com/files/2008/09/apeny2.jpg"><img class="alignleft size-medium wp-image-463" src="http://monparadis.wordpress.com/files/2008/09/apeny2.jpg?w=70" alt="" width="70" height="300" /></a>Una teoria sperimentata dall' Università tedesca di Landau in cerca delle cause del Colony Collapse Disorder (sparizione delle api). L'esperimento consisteva nel mettere un cellulare vicino ad un'arnia: le api se ne allontanavano lasciando la loro Regina e le api operaie addette alla pulizia senza cibo. Le onde dei cellulari rendono le api incapaci di ritrovare la strada di casa.</p>
<p>Questa catastrofe si rifletterà completamente sull'ambiente e ... su di noi!</p>
<p><strong><br />
Lo sapevate cosa diceva Einstein sulle Api?</strong></p>
<h3>"Se l'ape sparisce dalla Terra, all'uomo rimangono solo quattro anni di vita. Senza api non c'è' impollinazione, quindi niente piante, niente animali, niente uomini"<span style="font-size:x-small;font-family:Arial;"><strong></strong></span></p>
<h3>.</h3>
<h3>Siamo nel 2008 fra 4 anni siamo nel misterioso 2012 di cui ho già parlato <a href="http://monparadis.wordpress.com/2008/08/07/fascino-e-mistero/" target="_blank">qui<br />
</a>Che sia una conferma a tutti i sospetti e i misteri del 2012?!<br />
Ovviamente io spero di no ... ma continuo a sperare quanto già scritto nel mio precedente post.</h3>
<h3><span style="font-size:x-small;font-family:Arial;"><br />
Justine</span></h3>
</h3>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Anoressia #5]]></title>
<link>http://viadellebelledonne.wordpress.com/?p=6055</link>
<pubDate>Tue, 02 Sep 2008 21:16:35 +0000</pubDate>
<dc:creator>viadellebelledonne</dc:creator>
<guid>http://viadellebelledonne.wordpress.com/?p=6055</guid>
<description><![CDATA[
#5.1
di Liliana Zinetti
L’amore è condanna dolce e terribile.
Si compiono delitti in suo nome,
s]]></description>
<content:encoded><![CDATA[<p class="MsoNormal"><a href="http://it.wikipedia.org/wiki/Julia_Margaret_Cameron"><img class="alignnone size-full wp-image-6056" src="http://viadellebelledonne.wordpress.com/files/2008/09/1864_julia-margaret-cameron.jpg" alt="" width="277" height="223" align="left" /></a></p>
<p class="MsoNormal"><strong>#5.1</strong></p>
<p class="MsoNormal"><strong>di Liliana Zinetti</strong></p>
<p class="MsoNormal">L’amore è condanna dolce e terribile.<br />
Si compiono delitti in suo nome,<br />
si sbranano i cuccioli.<br />
Inutilmente provo<br />
ad amare da lontano.
</p>
<p class="MsoNormal"><span style="color:#ffffff;">.................</span></p>
<p class="MsoNormal">
<p class="MsoNormal"><span style="color:#ffffff;">.......</span></p>
<p class="MsoNormal">***<!--more--></p>
<p class="MsoNormal"><a href="http://www.saudek.com/en/jan/uvod.html"><img class="alignnone size-full wp-image-6058" src="http://viadellebelledonne.wordpress.com/files/2008/09/saudek.jpg" alt="" width="282" height="212" align="left" /></a><strong>#5.2</strong></p>
<p class="MsoNormal"><strong>di Marta Ajò</strong></p>
<p class="MsoNormal">Ridevano di lei<br />
delle sue esili membra in cui prevalevano i nodi venosi<br />
del suo incedere traballante di chi sta perdendo la forza di gravità<br />
del suo volto scheletrito e del suo andare in bicicletta sotto il solleone come sotto la pioggia<br />
per consumare la sua disperazione e la sua voglia di non esserci più;<br />
per affermare la sua esistenza attraverso la sua lenta scomparsa,<br />
attraverso l’allontanamento dalle norme,<br />
attraverso la paura degli altri alla diversità.<br />
Di chi si nutre infine dei propri organi<br />
perché null’altro attira quella fame vorace di morte.<br />
Per punirsi<br />
per punire .<br />
Fino al giorno che quel corpo cadde, e nessuno più ebbe a ridere.
</p>
<p class="MsoNormal">***</p>
<p class="MsoNormal"><a href="http://it.wikipedia.org/wiki/David_LaChapelle"><img class="alignnone size-full wp-image-6060" src="http://viadellebelledonne.wordpress.com/files/2008/09/davidlachapelle.jpg" alt="" width="278" height="382" align="left" /></a><strong>#5.3</strong></p>
<p class="MsoNormal"><strong>di Fernanda Ferraresso</strong></p>
<p class="MsoNormal">si parla si parla si parla<br />
voi parlate loro parlano<br />
io sto zitta<br />
mi consumo<br />
e mi raggiungo<br />
fino al cedimento<br />
fino a non sentirvi più parlare.<br />
Voglio sentirvi dentro<br />
voglio sentirvi in ogni centimetro d’osso<br />
là dove la materia si produce ad ogni scalfittura.<br />
Voi non ci siete<br />
siete dentro le vostre parole<br />
navigate lontani<br />
non avete terra dove mettere i piedi<br />
dove crescerli a forma di radice.<br />
Affondo affondo affondo.<br />
Al fondo non voglio vedere me<br />
una parola che si stacca da fuori<br />
io figurina di un album di famiglia.
</p>
<p class="MsoNormal">***</p>
<p class="MsoNormal"><a href="http://it.wikipedia.org/wiki/Luis_Bu%C3%B1uel"><img class="alignnone size-full wp-image-6065" src="http://viadellebelledonne.wordpress.com/files/2008/09/chien_andalou.gif" alt="" width="283" height="213" align="left" /></a><strong>#5.4</strong></p>
<p class="MsoNormal"><strong>di Mirko Servetti</strong></p>
<p>Signora grigia, consunta nel non-desiderio, macchina senza organi…</p>
<p>Mi consumerai ancora<br />
sapendomi senza calco<br />
e senza immagine<br />
ancora qui nel vano<br />
dove saremo ciò che potremo<br />
dove sbucheremo sciamando<br />
al modo delle api<br />
distanti dalle terre i cui fuochi<br />
ci sedussero ponendoci<br />
alla catena d’amore e agonia<br />
senza occasione di riscatto</p>
<p>***</p>
<p class="MsoNormal"><a href="http://www.zerowaste.it/dblog/articolo.asp?articolo=88"><img class="alignnone size-full wp-image-6063" src="http://viadellebelledonne.wordpress.com/files/2008/09/manichini.jpg" alt="" width="293" height="234" align="left" /></a><strong>#5.5</strong></p>
<p class="MsoNormal"><strong>di Api</strong></p>
<p class="MsoNormal">sciamare<br />
non sembra osabile<br />
manca la forza<br />
volutamente<br />
con caparbietà<br />
insisto<br />
ad annullare<br />
questo povero<br />
essere<br />
svaligiato<br />
da me stessa<br />
apparire<br />
è un comando<br />
imperioso<br />
secco<br />
a cui dò spazio<br />
nel paradossale<br />
non propormi<br />
non volermi<br />
ed immobile<br />
attendo l’onda<br />
onda<br />
figlia di malattia<br />
che m’incatena,<br />
travolgendomi.
</p>
<p class="MsoNormal">***</p>
<p class="MsoNormal">Post correlati:</p>
<p class="MsoNormal"><a href="http://viadellebelledonne.wordpress.com/2007/06/09/sullanoressia/">Anoressia</a></p>
<p class="MsoNormal"><a href="http://viadellebelledonne.wordpress.com/2007/06/09/la-cura-di-elio-talon/">Anoressia n.2</a></p>
<p class="MsoNormal"><a href="http://viadellebelledonne.wordpress.com/2007/06/10/anoressia-tautogramma/">Anoressia n.3</a></p>
<p class="MsoNormal"><a href="http://viadellebelledonne.wordpress.com/2007/06/11/meringa-duovo/">Anoressia n.4</a></p>
<p class="MsoNormal"><a href="http://viadellebelledonne.wordpress.com/2008/08/30/anorexis-di-alessandra-pigliaru/">Anorexis</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[MARCO BALLESTRA - UN TRIBUTO ALL'IMPEGNO CIVICO]]></title>
<link>http://gendusosindaco.wordpress.com/?p=2282</link>
<pubDate>Tue, 02 Sep 2008 11:54:50 +0000</pubDate>
<dc:creator>Alma</dc:creator>
<guid>http://gendusosindaco.wordpress.com/?p=2282</guid>
<description><![CDATA[ 
Abbiamo ricevuto un commento da Marco Ballestra e volentieri approfittiamo della circostanza per s]]></description>
<content:encoded><![CDATA[<p><span style="color:#000000;"> <span style="font-size:medium;"><br />
Abbiamo ricevuto un commento da <strong>Marco Ballestra </strong>e volentieri approfittiamo della circostanza per salutarlo, dichiarando nuovamente il nostro apprezzamento per la sua azione civica in quel di Ventimiglia e più precisamente in quel di Val Bevera.<br />
<img src="http://farm3.static.flickr.com/2196/2305792144_919662678b.jpg?v=0" alt="" /><br />
In calce al post pubblichiamo una rapida sintesi giornalistica di quello che Marco ha fatto e sostenuto di persona, pagando di persona. Un' attività simile inevitabilmente condiziona tutti gli altri importanti impegni: la famiglia, il lavoro, e quindi paghi tutto di persona.<br />
E' per questo che lo ringraziamo e non mancheremo di dare visibilità a quello che farà.<br />
In futuro ci piacerebbe parlasse solo del suo vero lavoro,<strong> l'apicoltore</strong>, un'attivita' molto affascinante. Bisognerebbe che i sindaci facessero bene i sindaci, lasciando gli apicoltori  alle loro più importanti attività (motivo tra l'altro del loro sostentamento).<br />
Ma ahimè, gli apicoltori come Marco, visto quanto latita la politica, devono cominciare ad okkuparsi della cosa pubblica.</p>
<p><span style="color:#000000;"> <span style="font-size:medium;"><br />
Che Marco Ballestra si okkupi ( la kk è voluta come rafforzativo) di ambiente non è una cosa poi tanto fuori luogo, forse è stato condizionato dalle sue piccole amichette: <strong>le api.</strong><br />
Molte volte mi è capitato di leggere delle api come indicatore ambientale estremamente sensibile.<br />
Sembra evitino i campi OGM, stanno alla larga delle onde elettromagnetiche, la chimica nell'agricoltura le decima inevitabilmente, ed uno studioso di poco conto una volta ebbe a dire:<br />
<img src="http://farm4.static.flickr.com/3261/2821373398_54391af1d8.jpg?v=0" alt="" /></p>
<p><span style="color:#000000;"> <span style="font-size:medium;"><br />
Marco, con la sua azione di tutela del territorio, sta quindi proteggendo le sue api? Suggerisco questa osservazione ai campioni del PDL affinché facciano scattare la temutissima accusa  di <strong>CONFLITTO D'INTERESSE.</strong> Ne abbiamo sentite tante, potremmo sentire anche questa!.<br />
<strong>Non RETE 4 ma le API mandiamole sul satellite!!! (Questo potrebbe essere lo slogan)</strong><br />
Qui mi fermo sennò mi tocca parlare del Fuco per Eccellenza<strong> Emilio Fede </strong>grande servitore dell' <strong>Ape Regina.</strong></p>
<p><span style="color:#000000;"> <span style="font-size:medium;"><br />
Caro Marco, la voglia di ridere che tu menzioni è passata un po' a tutti, l'impressione è che siamo solo all'inizio e che questa Società ha perso ogni legame con i suoi antichi e migliori valori. Ormai è solo tutto business, il resto passa in secondo, terzo, quarto piano.<br />
Vorrà dire che ai nostri figli lasceremo soldi e cemento, con i quali non riusciranno più a comprare quello che noi nel frattempo abbiamo distrutto. Quando dico noi parlo dell'11% della popolazione mondiale, l'altro 89% lo abbiamo già sacrificato.<br />
Ma peggiore è la situazione, più la speranza e la gioia di vivere non devono venir meno.<br />
Sono la base per la rinascita.<br />
Ti propongo la visione della scena più commovente del film<strong> LA VITA E' BELLA. </strong>Quel film ci ha insegnato molto come molto puoi insegnare tu,  <strong>MALEDETTO APAIO (per dirla alla Benigni)</strong>.<br />
Un abbraccio.<br />
<em><strong>Alma</strong></em><br />
<span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/8amyXbYmV4w'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/8amyXbYmV4w&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<p><a href="http://www.alzalatesta.net/"><br />
<span style="color:#000000;"> <span style="font-size:medium;"><br />
<img src="http://www.alzalatesta.net/images/stories/stop2.png" alt="" /><br />
<span style="color:#000000;"> <span style="font-size:medium;"><br />
CLICCA QUI PER ANDARE AL SITO DI MARCO BALLESTRA ---&#62;&#62;&#62;</a></p>
<p><span style="color:#000000;"> <span style="font-size:medium;"><br />
Ecco alcuni articoli che hanno parlato della Valle Bevera, della Centrale a Biomasse e quindi di Marco Ballestra.<br />
<!--more--><br />
<img src="http://farm2.static.flickr.com/1426/882999202_c9c322f45a_m.jpg" /> DEL 20/02/2008<br />
<a href="http://farm3.static.flickr.com/2371/2279594695_e044368a11_o.jpg"><img src="http://farm3.static.flickr.com/2371/2279594695_26d3690f27.jpg?v=0" alt="" /></a><br />
<img src="http://farm2.static.flickr.com/1426/882999202_c9c322f45a_m.jpg" /> DEL 08/05/2008<br />
<a href="http://farm4.static.flickr.com/3028/2477121465_f2d8e5b283_o.jpg"><img src="http://farm4.static.flickr.com/3028/2477121465_32650b2d51.jpg?v=0" alt="" /></a><br />
<img src="http://farm2.static.flickr.com/1426/882999202_c9c322f45a_m.jpg" /> DEL 18/05/2008<br />
<a href="http://farm3.static.flickr.com/2183/2503151739_e2c8fd78b9_o.jpg"><img src="http://farm3.static.flickr.com/2183/2503151739_8e3d8e8dca.jpg?v=0" alt="" /></a><br />
<img src="http://farm2.static.flickr.com/1426/882999202_c9c322f45a_m.jpg" /> DEL 14/06/2008<br />
<a href="http://farm4.static.flickr.com/3150/2593881617_a5be4de2d6_o.jpg"><img src="http://farm4.static.flickr.com/3150/2593881617_60dc85fe2d.jpg?v=0" alt="" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[L'autore è un'ape]]></title>
<link>http://magazzino.wordpress.com/?p=27</link>
<pubDate>Tue, 02 Sep 2008 08:53:40 +0000</pubDate>
<dc:creator>Caminadella</dc:creator>
<guid>http://magazzino.wordpress.com/?p=27</guid>
<description><![CDATA[Un testo sta ai testi che lo hanno preceduto come il miele sta ai fiori.
&#8220;Le api rubacchiano d]]></description>
<content:encoded><![CDATA[<p>Un testo sta ai testi che lo hanno preceduto come il miele sta ai fiori.</p>
<p style="padding-left:30px;">"Le api rubacchiano di qua e di là ai fiori, ma dopo ne fanno il miele che è tutto loro [...]. Allo stesso modo, i pezzi presi ad altri, l'autore li trasformerà e confonderà per fare un'opera tutta sua" (Montaigne, <em>Saggi</em>, citato nella pagina dei ringraziamenti (p. 233) di <a title="La scomparsa delle api" href="http://www.liberonweb.com/asp/libro.asp?ISBN=8804577657" target="_blank"><em>La scomparsa delle api</em></a>, di Sylvie Coyaud).</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Google Chrome - Da new Browsert!]]></title>
<link>http://oli4b.wordpress.com/?p=1491</link>
<pubDate>Tue, 02 Sep 2008 07:54:54 +0000</pubDate>
<dc:creator>oli4b</dc:creator>
<guid>http://oli4b.wordpress.com/?p=1491</guid>
<description><![CDATA[Google Chrome Beta Comicbook
View SlideShare presentation or Upload your own. (tags: comicbook sourc]]></description>
<content:encoded><![CDATA[<div id="__ss_578549" style="width:425px;text-align:left;"><a title="Google Chrome Beta Comicbook" href="http://www.slideshare.net/evroekel/google-chrome-beta-comicbook-presentation?src=embed">Google Chrome Beta Comicbook</a></p>
<div style="font-size:11px;padding-top:2px;font-family:tahoma,arial;height:26px;">View SlideShare <a title="View Google Chrome Beta Comicbook on SlideShare" href="http://www.slideshare.net/evroekel/google-chrome-beta-comicbook-presentation?src=embed">presentation</a> or <a href="http://www.slideshare.net/upload?src=embed">Upload</a> your own. (tags: <a href="http://slideshare.net/tag/comicbook">comicbook</a> <a href="http://slideshare.net/tag/source">source</a>)</div>
</div>
<p>by the Google Chrome team, comics adaptation by Scott McCloud.<br />
Google Chrome browser gaat binnenkort live. Google gaat daarmee het gevecht met marktleider Microsoft nog steviger aan. Eerst Gmail, toen Docs en nu dus de langverwachte browser (2004) als concurrent voor IE. Het nieuws is door Google zelf bevestigd op Google blog. De Chrome browser moet net als Gmail een nieuwe manier van werken en denken voor het browsen introduceren. In een 38 pagina's tellende strip wordt meer toelichting gegeven.</p>
<p>Chrome is a web browser that will be able to better run the online web apps that Google is so busy developing. It will be based on WebKit the open source rendering engine used by Apple’s Safari and include a new JavaScript engine called V8. The browser will be called Google Chrome (which they really ought to work on) and will be released in beta form for Windows some time today. According to Google Mac and Linux versions are on the way too. You can read the blog post here. Or if you want Google has also produced a comic for your enjoyment</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Iron Money launches with OAuth-based API]]></title>
<link>http://oauth.wordpress.com/?p=41</link>
<pubDate>Tue, 02 Sep 2008 02:34:02 +0000</pubDate>
<dc:creator>Chris Messina</dc:creator>
<guid>http://oauth.wordpress.com/?p=41</guid>
<description><![CDATA[Chasen Le Hara, a nineteen-year-old business finance major at California State University of Long Be]]></description>
<content:encoded><![CDATA[<p><a href="http://chasenlehara.com/">Chasen Le Hara</a>, a nineteen-year-old business finance major at California State University of Long Beach, has <a href="http://ironmoney.com/blog/posts/3/">launched</a> <a href="https://ironmoney.com">Iron Money</a>'s API, and with it comes an application that makes heavy use of OAuth:</p>
<blockquote cite="https://ironmoney.com/blog/posts/3/"><p>Iron Money's API allows developers to build tools that leverage the financial data they upload to Iron Money. The API gives developers read, write, and delete access to all of the data they store in Iron Money. The API features <a href="http://oauth.net/">OAuth</a> for authorization and <a href="http://openid.net/">OpenID</a> support will be coming sometime in the next few months.</p></blockquote>
<p>Documentation is <a href="https://ironmoney.com/api/documentation/">available</a> as well as a <a href="http://code.google.com/p/iron-money/">PHP-based client library</a> for interacting with the service.</p>
<p>If you want to sign up and give it a try, <a href="https://ironmoney.com/sign-up/">free registration is now open</a> (as Chasen said, <a href="http://demand.openid.net/site/ironmoney.com">OpenID is coming soon</a>).</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[API Reveals the Mystery of View Road Hospital on "On The Beat 3"]]></title>
<link>http://sparkyboi.wordpress.com/?p=598</link>
<pubDate>Mon, 01 Sep 2008 07:47:15 +0000</pubDate>
<dc:creator>sparkyboi</dc:creator>
<guid>http://sparkyboi.wordpress.com/?p=598</guid>
<description><![CDATA[



The View Road Hospital Encounter

 
 
 






 


 


Catch API with the On The Beat Hosts ]]></description>
<content:encoded><![CDATA[<table class="contentpaneopen" border="0">
<tbody>
<tr>
<td class="contentheading" width="100%">
<h3><span style="color:#ffff00;">The View Road Hospital Encounter</span></h3>
</td>
<td class="buttonheading" width="100%" align="right"><a title="PDF" href="http://www.api.sg/main/index2.php?option=com_content&#38;do_pdf=1&#38;id=117" target="_blank"></a> </td>
<td class="buttonheading" width="100%" align="right"><a title="Print" href="http://www.api.sg/main/index2.php?option=com_content&#38;task=view&#38;id=117&#38;pop=1&#38;page=0&#38;Itemid=107" target="_blank"></a> </td>
<td class="buttonheading" width="100%" align="right"><a title="E-mail" href="http://www.api.sg/main/index2.php?option=com_content&#38;task=emailform&#38;id=117&#38;itemid=107" target="_blank"></a> </td>
</tr>
</tbody>
</table>
<table class="contentpaneopen" border="0">
<tbody>
<tr>
<td colspan="2" width="70%" align="left" valign="top"> </td>
</tr>
<tr>
<td class="createdate" colspan="2" valign="top"> </td>
</tr>
<tr>
<td colspan="2" valign="top"><img src="http://api.sg/main/images/stories/media/onthebeat3_logo.jpg" alt="" width="427" height="185" />Catch API with the <a href="http://u.mediacorptv.sg/programmesdetail.aspx?iid=MDC080428-0000010&#38;kw=PROGRAMMESHOME" target="_blank">On The Beat</a> Hosts Lee Teng 李腾, Jeremy Chan 田铭耀, and Vivian Lai 赖怡伶 and Malaysia Singer Rynn Lin Yu Zhong</p>
<p><img style="width:449px;height:327px;" src="http://i62.photobucket.com/albums/h108/pazhi/api/linyuzhongthumb.jpg" alt="" width="449" height="326" /></p>
<p>View Road hospital is located at Admiralty Road West, Woodlands, Singapore.It used to be a mental hospital, started in 1977. It was closed sometimes in 2001.</p>
<p>When abandoned, it was the favourite haunting ground of many people, especially students.</p>
<p>You can view pictures of the former mental hospital <a href="http://www.pbase.com/synapseman/view_road_hospital" target="_blank">here</a>.</p>
<p>Now it is being converted into a <a href="http://sg.news.yahoo.com/cna/20080802/tap-275-vacant-govt-buildings-turned-tra-231650b.html" target="_blank">workers' dormitory</a>.</p>
<h3><span style="font-size:larger;">Watch <span style="text-decoration:underline;"><span style="color:#00ff00;">On the Beat 3, on 9th Sep at 8pm </span></span></span>to catch possibly the last glimpse of <span style="text-decoration:underline;">Old View Road Hospital</span>, before it's mystery disappear.</h3>
<p><img src="http://i62.photobucket.com/albums/h108/pazhi/api/groupphotothumb.jpg" alt="" width="473" height="374" /></p>
<p>API Sparky &#38; Shany with On The Beat 3 Hosts Lee Teng 李腾, Jeremy Chan 田铭耀, Vivian Lai 赖怡伶 and current View Road Hospital lesse Jimmy.</td>
</tr>
</tbody>
</table>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Envío de formularios de forma asíncrona]]></title>
<link>http://hermosodia.wordpress.com/?p=582</link>
<pubDate>Mon, 01 Sep 2008 06:20:43 +0000</pubDate>
<dc:creator>LeChuckNorris</dc:creator>
<guid>http://hermosodia.wordpress.com/?p=582</guid>
<description><![CDATA[jQuery Form Plugin es, como su nombre indica, un plugin de jQuery que permite de modo sencillo y no ]]></description>
<content:encoded><![CDATA[<p><a href="http://malsup.com/jquery/form/#getting-started">jQuery Form Plugin</a> es, como su nombre indica, un plugin de jQuery que permite de modo sencillo y no intrusivo actualizar formularios HTML para usar AJAX. Aplicado a un formulario se consigue que al hacer submit sobre el, se envien sus datos de forma asíncrona sin necesidad de refrescar toda la página.</p>
<p>Está muy bien <a href="http://malsup.com/jquery/form/#api">documentado</a> con <a href="http://malsup.com/jquery/form/#code-samples">ejemplos</a> así que en este caso no haré ningúno.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Mashup]]></title>
<link>http://mtmzk2.wordpress.com/?p=195</link>
<pubDate>Mon, 01 Sep 2008 01:02:05 +0000</pubDate>
<dc:creator>mtmzk</dc:creator>
<guid>http://mtmzk2.wordpress.com/?p=195</guid>
<description><![CDATA[Para vc que me perguntou o que é, aqui está uma melhor explicação.

]]></description>
<content:encoded><![CDATA[<p>Para vc que me perguntou o que é, aqui está uma melhor explicação.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/U9sENSA_sjI'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/U9sENSA_sjI&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[FSBL API: Get A List Of Files From A Folder In Your Social Network Workspace]]></title>
<link>http://forsalebylocals.wordpress.com/?p=504</link>
<pubDate>Fri, 29 Aug 2008 22:39:36 +0000</pubDate>
<dc:creator>forsalebylocals</dc:creator>
<guid>http://forsalebylocals.wordpress.com/?p=504</guid>
<description><![CDATA[Update:  After posting this blog article, we&#8217;ve since consolidated all of our API overviews in]]></description>
<content:encoded><![CDATA[<p>Update:  After posting this blog article, we've since consolidated all of our API overviews in a single location on the ForSaleByLocals commercial site.  You can find the <a href="http://api.forsalebylocals.com/docs/GetFileListFromFolder">API overview to get a list of files from a folder</a>. there.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[OCaml Batteries Included, release 0: Where it should all have begun]]></title>
<link>http://dutherenverseauborddelatable.wordpress.com/?p=140</link>
<pubDate>Fri, 29 Aug 2008 21:24:35 +0000</pubDate>
<dc:creator>yoric</dc:creator>
<guid>http://dutherenverseauborddelatable.wordpress.com/?p=140</guid>
<description><![CDATA[After a few discussions on IRC, by e-mail and on forums, I have come to realize that both the purpos]]></description>
<content:encoded><![CDATA[<p style="text-align:justify;">After a few discussions on IRC, by e-mail and on forums, I have come to realize that both the purpose of Batteries Included and what the development of Batteries involved were quite unclear to most people -- and that we should probably have started our work in quite a different manner. All these discussions have prompted a few changes and the release of a first pre-version of Batteries Included, which you may find <a href="http://forge.ocamlcore.org/frs/?group_id=17&#38;release_id=41">on the OCamlForge project</a> (you may also browse source code <a href="http://forge.ocamlcore.org/plugins/scmsvn/viewcvs.php/branches/batteries-0/?root=batteries">here</a> and API documentation <a href="http://forge.ocamlcore.org/docman/index.php?group_id=17&#38;selected_doc_group_id=49&#38;language_id=1">here</a>).</p>
<p style="text-align:justify;">This release represents what we should have produced in the first place; a simple and uniform presentation layer on top of existing libraries.</p>
<p><!--more--></p>
<h2 style="text-align:justify;">What exactly is OCaml Batteries Included?</h2>
<p style="text-align:justify;">OCaml is a great language which suffers from its lack of standardization. The absence of a real standard library has led the OCaml community to produce many incompatible libraries with distinct conventions. In turn, both this lack of out-of-the-box features and this multiplicity of choices make it difficult to start developing with OCaml or to design new works for reusability. By contrast, commercial offerings such as Java or .Net come with a comprehensive toolbox which makes the life of programmers that much easier.</p>
<p style="text-align:justify;">OCaml Batteries Included is an attempt to provide a uniform library environment for OCaml, both for beginners and for experienced developers, which should give programmers out-of-the-box support for most common tasks. Although OCaml Batteries Included has to be a library for technical reasons, the objective is not to create some brand new framework but rather to integrate existing works,  with dependencies towards existing libraries, and relying on the mechanisms of Findlib and GODI/Apt/Rpm for dependencies resolution.</p>
<p style="text-align:justify;">OCaml Batteries Included is not a standard library: as far as we are concerned, the standard library is a combination of the base library provided by Inria and ExtLib, with possible other adjunctions if deemed necessary.</p>
<p style="text-align:justify;">OCaml Batteries Included also doesn't stop at the level of standard libraries. In time, we aim to provide</p>
<ul>
<li>network management (most likely using OCamlNet)</li>
<li>concurrency (most likely using coThreads)</li>
<li>calendar management</li>
<li>distributed programming (possibly bulk synchroneous programming or Opis)</li>
<li>user-interface (underlying support undecided)</li>
<li>plotting</li>
<li>geometry</li>
<li>parsing and unparsing</li>
<li>database access</li>
<li>logging</li>
<li>image manipulation</li>
<li>xml manipulation</li>
<li>unit testing</li>
<li>pdf generation</li>
<li>reactive programming</li>
<li>localisation</li>
<li>safe marshalling</li>
<li>...</li>
</ul>
<p style="text-align:justify;">Finally, OCaml Batteries Included doesn't stop at the level of libraries. We already give access to a few compile-time tools and future releases will also include syntax extensions. Expect things along the lines of:</p>
<ul>
<li>various syntactic improvements (local opening of modules, extended exception management)</li>
<li>improved pattern matching (micmatch or Patterns)</li>
<li>management of free/bound names</li>
<li>domain-specific languages</li>
<li>...</li>
</ul>
<p style="text-align:justify;">Oh, and why does this work have to be a library? Because of that little matter of uniformity. At the moment, the OCaml base library provides channels for input and output and streams as a lazy data structure. ExtLib, on the other hand, provides the more generic <code>input</code> and <code>'a output</code> for, well, input and output, along with enumerations as a lazy data structure. In both occurrences, the mechanism offered by ExtLib is more  open, more generic and more powerful. Per design, we plan to consider channels and streams as obsolete. However, for the moment, most libraries use the more standard channels and streams. In order to provide uniform APIs, we will need to program a compatibility layer. Fortunately, it's usually easy to convert between channels and inputs/outputs (except for Printf, but we've solved that particular problem already). That's the <em>glue</em>.</p>
<h2 style="text-align:justify;">Release 0 and beyond</h2>
<p style="text-align:justify;">The main objective of release 0 is to get things (re)started on a clear path, so don't expect any brand new feature. What this release contains, in addition to logistics, is access to:</p>
<ul>
<li>the base library ;</li>
<li>ExtLib ;</li>
<li>OCamlDoc ;</li>
<li>Findlib ;</li>
<li>Godi-script.</li>
</ul>
<p>Let's look a little bit more at the details.</p>
<p>The first part is Standard, the candidate replacement for Pervasives:</p>
<ul>
<li>Batlib
<ul>
<li>Standard</li>
</ul>
</li>
</ul>
<p>Standard is composed from the contents of Pervasives and ExtLib's Std. This module should change relatively little in the future, besides, perhaps, the addition of a few very common data structures (à la Either).</p>
<p>Next, we have base data (typically numbers and characters):</p>
<ul>
<li>Batlib
<ul>
<li>Data<br />
Numbers</p>
<ul>
<li>Big_int</li>
<li>Complex</li>
<li>Int32</li>
<li>Int64</li>
<li>Nativeint</li>
<li>Num</li>
</ul>
<p>Text</p>
<ul>
<li>Char</li>
<li>String [ExtLib's extended version]</li>
<li>StringLabels</li>
</ul>
</li>
</ul>
</li>
</ul>
<p style="text-align:justify;">This version doesn't contain anything Unicode-ish yet nor any of our additional number modules. We'll get Unicode support whenever ExtLib finally adopts Camomile or drops the one module of Camomile already adopted. More modules are already on the repository and waiting to be submitted to ExtLib, including safe integers, custom operators, etc.</p>
<p style="text-align:justify;">Then come containers</p>
<ul>
<li>Batlib
<ul>
<li>Containers<br />
Collection-style stuff</p>
<ul>
<li>Enum</li>
</ul>
<p>Generic persistent containers</p>
<ul>
<li>Dllist</li>
<li>List [ExtLib's extended version]</li>
<li>ListLabels</li>
<li>Map</li>
<li>MapLabels</li>
<li>Set</li>
<li>SetLabels</li>
</ul>
<p>Generic mutable containers</p>
<ul>
<li>Array [ExtLib's extended version]</li>
<li>Global</li>
<li>Hashtbl [ExtLib's extended version]</li>
<li>HashtblLabels</li>
<li>RefList</li>
<li>Stack</li>
<li>Stream</li>
</ul>
<p>Specialized containers</p>
<ul>
<li>BitSet</li>
<li>Buffer</li>
<li>Option</li>
<li>Lazy</li>
</ul>
</li>
</ul>
</li>
</ul>
<p style="text-align:justify;">Again, a number of things are waiting on the repository (or for acceptation by ExtLib) before we can add them. In the future, we'll get improved streams (yes, although they're obsoleted), lazy lists, etc. In time, I hope we can add things like red-black trees, generic AVLs, etc.</p>
<p style="text-align:justify;">Let's continue with meta-level stuff:</p>
<ul>
<li>Batlib
<ul>
<li>Meta<br />
Access to language primitives</p>
<ul>
<li>Marshal</li>
<li>Oo</li>
</ul>
<p>Interaction with other languages</p>
<ul>
<li>Callback</li>
<li>Memory</li>
<li>Gc</li>
<li>Weak</li>
</ul>
<p>Internals</p>
<ul>
<li>Obj</li>
<li>CamlinternalMod</li>
<li>CamlinternalOO</li>
</ul>
</li>
</ul>
</li>
</ul>
<p style="text-align:justify;">In a future version, we may eventually add Dynlink if/whenever a consistent interface permits its use from both byte-compiled and native code. There is also some space for SafeMarshal and for bindings to other programming languages.</p>
<p style="text-align:justify;">Text manipulation, from lexing to pretty-printing, goes into module Batlib.Text, as follows:</p>
<ul>
<li>Batlib
<ul>
<li>Text<br />
Parsing</p>
<ul>
<li>Genlex</li>
<li>Lexing</li>
<li>Parsing</li>
<li>Scanf</li>
<li>Str</li>
</ul>
<p>Printing</p>
<ul>
<li>Format</li>
<li>Printexc</li>
<li>Printf</li>
</ul>
</li>
</ul>
</li>
</ul>
<p style="text-align:justify;">Future versions will be enriched with parser combinator library, unicode lexing (Ulex) and interaction with other parsers than Yacc. In addition, Printf, Scanf, Printf and Genlex will be replaced by nearly-identical but more generic modules, while the future of Format remains undecided. Finally, this may be the right place to give access Camlp4.</p>
<p style="text-align:justify;">Module Batlib.Util groups a few utilities which have no better place:</p>
<ul>
<li>Batlib
<ul>
<li>Base64 [from ExtLib]</li>
<li>Digest</li>
<li>Random</li>
</ul>
</li>
</ul>
<p>No decision have been taken for the future of this module. Most likely, it will continue gathering otherwise-impossible-to-classify items, with features such as calendar management.</p>
<p>As OCaml offers support for concurrency, we publish this feature in a dedicated module Batlib.Concurrency:</p>
<ul>
<li>Batlib
<ul>
<li>Concurrency
<ul>
<li>Threads
<ul>
<li>Condition</li>
<li>Event</li>
<li>Mutex</li>
<li>Thread</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<p style="text-align:justify;">Future versions of Batlib.Concurrency will receive alternatives to Threads, such as coThreads or lwt, while Batlib.Concurrency.Threads itself will receive additional tools for use with threading, such as Concurrent Cells.</p>
<p style="text-align:justify;">Other interactions with the system, from file management to signals, are grouped in Batlib.System:</p>
<ul>
<li>Batlib
<ul>
<li>System<br />
Environment interaction</p>
<ul>
<li>Arg</li>
<li>OptParse [from ExtLib]</li>
</ul>
<p>Streams</p>
<ul>
<li>IO [from ExtLib]</li>
<li>Unzip [from ExtLib]</li>
</ul>
<p>System calls</p>
<ul>
<li>Filename</li>
<li>Unix</li>
<li>UnixLabels</li>
<li>Sys</li>
</ul>
</li>
</ul>
</li>
</ul>
<p style="text-align:justify;">Future versions will complete this offering with more operations on files (as a replacement for those operations included in Pervasives), operating-system related utilities, such as are included already in OCamlBuild or Godi-script. There is also some space for operating-system specific modules.</p>
<p style="text-align:justify;">The final module permits (some) interaction with the OCaml toolchain:</p>
<ul>
<li>Batlib
<ul>
<li>Toolchain
<ul>
<li>Odoc_info [from OCamlDoc]</li>
<li>Findlib [from Findlib]</li>
<li>Godi_script [from Godi-script]</li>
</ul>
</li>
</ul>
</li>
</ul>
<p style="text-align:justify;">Future versions will give access to OCamlBuild's modules and should eventually provide tools for causing and controlling compilations from within OCaml. While this is not our main objective, together with Dynlink, this may give us elements of a dynamically-compiled OCaml.</p>
<h2>How can I get some stuff into Batteries Included?</h2>
<p style="text-align:justify;">As you have seen, we already have a number of plans for Batteries Included and there is room for more. Now, if you believe that some library should absolutely get loaded into Batteries, we suggest taking the following steps:</p>
<ul>
<li>make sure that the license of the library is compatible with Batteries (chances are that if it's open-source and if it's OCaml, there won't be any licensing issue, but be careful with the full GPL or the un-amended LGPL)</li>
<li>if this library is not in GODI yet, contribute a GODI package (or find someone to do so) -- Debian or Fedora packages are nice, too, but for the time being, we are using GODI as a reference</li>
<li>if this library is new or not very well-known, find people to test it and review it</li>
<li>if the API of the library makes use of functions or data structures which are considered obsolete in Batteries or which are clearly redundant with respect to functions or data structures already present in Batteries, please provide a glue layer, hiding these functions or data structures behind an API which makes use of the functions or data structures favored by Batteries</li>
<li>if the API of the library makes use of <em>closed</em> data structures, please try and find a manner of <em>opening</em> them -- if you don't understand what I mean, compare the closed design of <code>channel_in</code> and <code>channel_out</code> to the open design <code>input</code> and <code>'a output</code>, the closed design of streams to the open one of enumerations, etc.</li>
<li>design an OCamlBuild plug-in which will let users link against the API</li>
<li>contact us -- for the time being, we're using the main OCaml Mailing-List.</li>
</ul>
<p style="text-align:justify;">Also, feel free to contact us with any question or suggestion.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Evaluating Library Technology]]></title>
<link>http://myslispracticum.wordpress.com/?p=86</link>
<pubDate>Fri, 29 Aug 2008 18:07:21 +0000</pubDate>
<dc:creator>Erin B.</dc:creator>
<guid>http://myslispracticum.wordpress.com/?p=86</guid>
<description><![CDATA[Reading some materials suggested by Kif in preparation for practicum (1pm-3pm ).
These articles shou]]></description>
<content:encoded><![CDATA[<p>Reading some materials suggested by Kif in preparation for practicum (1pm-3pm ).</p>
<p>These articles should come in handy when evaluating <a title="Omeka" href="http://omeka.org/" target="_blank">Omeka</a>, which the library has installed for testing.  For my real (i.e. paid) job, I recently visited the Center for History and New Media to discuss how Omeka can be integrated with CSU's CONTENTdm-based collections to create exhibits that are more visually attractive, focused, and interactive than CONTENTdm usually allows.  However, at the moment, we are only capable of transmitting metadata using <a title="OAI-PMH" href="http://www.openarchives.org/pmh/" target="_blank">OAI-PMH</a>, and have not yet developed an API capable of "scraping" actual objects (i.e. allowing Omeka to natively display objects that are located in a CONTENTdm repository).  So one of the things I will be doing for my practicum is investigating how Omeka can be used at the library - with or without the API.</p>
<p>It also appears that I will get to sit in on some meetings, such as the ebrary webinar mentioned in my last post, where technology choices will be discussed and software will be evaluated.</p>
<p>Based on the readings listed below, the major areas of consideration when selecting digital library software are:</p>
<ul>
<li>establish a clear and specific project statement that includes the scope of the project, infrastructure dimensions, and the overall purpose of the project</li>
<li>explore the software functionality requirements that must be met to accomplish project goals and meet user needs</li>
<li>explore practices at similar - and dissimilar - institutions to better understand the issues involved, compare a variety of approaches, and set a baseline for functionality</li>
<li>determine the characteristics and practices of the user community using empirical data</li>
<li>rank and prioritize functionality requirements to determine a baseline and to set forth a plan for development and added functionality over time if needed</li>
<li>examine the viability of the vendor</li>
<li>determine the security and authentication features of the software - including the granularity of user access and privileges - to determine how the software fits into existing institutional systems</li>
<li>consider whether the budget and other resources available will meet the demands of the new software</li>
<li>come up with a plan for training and documentation</li>
<li>if the plan is part of a <a title="Universal Service Fund" href="http://www.universalservice.org/sl/" target="_blank">Universal Service Fund</a>, it should additionally include an assessment of the institution's  technology environment, a coherent strategy for meeting specific goals for improvement, and an established evaluation process for monitoring progress and making necessary changes mid-course</li>
</ul>
<p>View: <a title="CSL Checklist fo Technology Plans" href="http://www.webjunction.org/techplan-evaluation/articles/content/3160363" target="_blank">Connecticut State Library Checklist for Technology Plans</a></p>
<p>Download [PDF]: <a href="http://myslispracticum.files.wordpress.com/2008/08/cervone_h_frank.pdf">Cervone, H. Frank. "Some considerations when selecting digital library software." OCLC Systems and Services: Int'l digital library perspectives, 22(2), 2006.</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Free New Zealand web cartography tools for educational and non-commercial purposes.]]></title>
<link>http://geosmart.wordpress.com/?p=22</link>
<pubDate>Fri, 29 Aug 2008 04:36:08 +0000</pubDate>
<dc:creator>Luigi Cappel</dc:creator>
<guid>http://geosmart.wordpress.com/?p=22</guid>
<description><![CDATA[Free New Zealand web cartography tools for educational and non-commercial purposes.
 As the Gold Spo]]></description>
<content:encoded><![CDATA[<p class="MsoNormal"><span style="font-size:12pt;">Free New Zealand web cartography tools for educational and non-commercial purposes.</span></p>
<p class="MsoNormal"><span style="font-size:12pt;"> As the Gold Sponsor for <a href="http://www.cartography.org.nz/geocart2008/index.htm" target="_blank">GeoCart’2008</a>, the National Cartography Conference at Auckland University from 1-3 September, <a href="http://www.geosmart.co.nz" target="_blank">GeoSmart Maps</a> Ltd General Manager Phil Allen has announced that GeoSmart is offering a set of web tools for web cartographers for use free of charge for educational and non-commercial use. He will outline these in a presentation at the conference on Wednesday 3 September.</span></p>
<p class="MsoNormal"><span style="font-size:12pt;"> </span></p>
<p class="MsoNormal"><span style="font-size:12pt;">“As the leading supplier of commercial cartographic products in New Zealand, we would like to encourage development of new applications,” said Phil Allen. “There are so many opportunities for people to develop wonderful web and mobile applications and we have the API’s and web services, as well as a wealth of geo-spatial data about New Zealand. “</span></p>
<p class="MsoNormal"><span style="font-size:12pt;"> </span></p>
<p class="MsoNormal"><span style="font-size:12pt;">The tools GeoSmart is making available include:</span></p>
<p class="MsoNormal"><span style="font-size:12pt;"> </span></p>
<p class="MsoNormal"><span style="font-size:12pt;font-family:Symbol;" lang="EN-GB">·</span><span style="font-size:12pt;font-family:&#34;" lang="EN-GB"><span> </span>Web mapping API </span></p>
<p class="MsoNormal"><span style="font-size:12pt;font-family:Symbol;" lang="EN-GB">·</span><span style="font-size:12pt;font-family:&#34;" lang="EN-GB"><span> </span>Points of Interest API </span></p>
<p class="MsoNormal"><span style="font-size:12pt;font-family:Symbol;" lang="EN-GB">·</span><span style="font-size:12pt;font-family:&#34;" lang="EN-GB"><span> </span>Geocoding and reverse geocoding web services </span></p>
<p class="MsoNormal"><span style="font-size:12pt;font-family:Symbol;" lang="EN-GB">·</span><span style="font-size:12pt;font-family:&#34;" lang="EN-GB"><span> </span>Directions API </span></p>
<p class="MsoNormal"><span style="font-size:12pt;font-family:Symbol;" lang="EN-GB">·</span><span style="font-size:12pt;font-family:&#34;" lang="EN-GB"><span> </span>Route Optimisation API </span></p>
<p class="MsoNormal"><span style="font-size:12pt;font-family:Symbol;" lang="EN-GB">·</span><span style="font-size:12pt;font-family:&#34;" lang="EN-GB"><span> </span>Vector Graphics API </span></p>
<p class="MsoNormal"><span style="font-size:12pt;font-family:Symbol;" lang="EN-GB">·</span><span style="font-size:12pt;font-family:&#34;" lang="EN-GB"><span> </span>Map datasets (NZ map base, Cadastral map base, Census map base)</span><span style="font-size:12pt;"></span></p>
<p class="MsoNormal"><span style="font-size:12pt;"> </span></p>
<p class="MsoNormal"><span style="font-size:12pt;" lang="EN-GB">Using such tools, web cartographers can build complex web, Location Based Services (LBS) and Mobile based GIS solutions such as; Carbon footprints for businesses by measuring the journey times of staff going to and from work and including their business activities to computing calorie burn when a user creates a walk/cycle/running route. The tools include all of the APIs required and a set of maps with many code examples. Allen’s paper will present these tools and advise how educational institutes and the web cartography community at large can take advantage of these for promoting and enhancing our industry.</span></p>
<p class="MsoNormal"><span style="font-size:12pt;" lang="EN-GB"> </span></p>
<p class="MsoNormal"><span style="font-size:12pt;" lang="EN-GB">For more information please contact Luigi Cappel <a href="mailto:luigi.cappel@geosmart.co.nz">luigi.cappel@geosmart.co.nz</a> </span><span style="font-size:12pt;"></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Video Conversion API Is Ready To Launch]]></title>
<link>http://forsalebylocals.wordpress.com/2008/08/28/video-conversion-api-is-ready-to-launch/</link>
<pubDate>Thu, 28 Aug 2008 22:57:44 +0000</pubDate>
<dc:creator>forsalebylocals</dc:creator>
<guid>http://forsalebylocals.wordpress.com/2008/08/28/video-conversion-api-is-ready-to-launch/</guid>
<description><![CDATA[After a few days delay, we are ready to launch the FSBL Video Conversion API.  Everything is coded ]]></description>
<content:encoded><![CDATA[<p>After a few days delay, we are ready to launch the FSBL Video Conversion API.  Everything is coded and fully tested. You'll be able to get an API key, updated documentation, and actually convert video using the API at <span style="text-decoration:line-through;">11am</span> noon Eastern time on Friday (delayed an hour to ensure that RSS output meets the RSS spec). The Video Conversion Widget is already live for those that want/need an interface for their automated conversions.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Amiga Forever - Home of Amiga Emulation]]></title>
<link>http://willwm.wordpress.com/2008/08/28/amiga-forever-home-of-amiga-emulation/</link>
<pubDate>Thu, 28 Aug 2008 20:09:46 +0000</pubDate>
<dc:creator>willwm</dc:creator>
<guid>http://willwm.wordpress.com/2008/08/28/amiga-forever-home-of-amiga-emulation/</guid>
<description><![CDATA[If any of you are familiar with the unfortunate history of the incredibly ahead-of-its-time Amiga co]]></description>
<content:encoded><![CDATA[<p>If any of you are familiar with the unfortunate history of the incredibly ahead-of-its-time Amiga computer, I think you'll get a big kick out of this:</p>
<blockquote><p><a href="http://www.amigaforever.com/"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://willwm.files.wordpress.com/2008/08/screen-afdesktop-3x.png" alt="screen-afdesktop-3x" width="324" height="244" /></a></p>
<p>The Amiga computer, launched by Commodore in 1985, combined superior multimedia technology with ease of use, inspiring millions of the most creative and enthusiastic computer users ever.</p>
<p>Amiga Forever is the award-winning Amiga preservation, emulation and support package brought to you by Cloanto, Amiga developers since 1986.</p>
<p>Different editions of Amiga Forever blend high-quality software and original content with the ultimate set of videos to chronicle and let you experience firsthand the history, culture, challenges and passion behind the Amiga.</p>
<p>(<a title="http://www.amigaforever.com/" href="http://www.amigaforever.com/">http://www.amigaforever.com/</a>)</p></blockquote>
<p>If you're not, you should really check it out. This computer did things in 1985 that mainstream computers wouldn't end up doing for years - unfortunately, Commodore screwed the whole thing up, and it never got the chance to really break into the marketplace:</p>
<blockquote><p><a href="http://en.wikipedia.org/wiki/Amiga"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://willwm.files.wordpress.com/2008/08/265px-amiga-logo.jpg" alt="265px-Amiga_Logo" width="265" height="68" /></a></p>
<p><strong>Amiga</strong><br />
From Wikipedia, the free encyclopedia</p>
<p>The <strong>Amiga</strong> is a family of <a href="http://en.wikipedia.org/wiki/Personal_computer">personal computers</a> originally developed by <a href="http://en.wikipedia.org/wiki/Amiga_Corporation">Amiga Corporation</a>. Development on the Amiga began in 1982 with <a href="http://en.wikipedia.org/wiki/Jay_Miner">Jay Miner</a> as the principal hardware designer. <a href="http://en.wikipedia.org/wiki/Commodore_International">Commodore International</a> bought Amiga Corporation and introduced the machine to the market in 1985. The name <em>Amiga</em> was chosen by the developers specifically from the <a href="http://en.wikipedia.org/wiki/Spanish_language">Spanish</a> and <a href="http://en.wikipedia.org/wiki/Portuguese_language">Portuguese</a> word for a female friend,<sup><a href="http://en.wikipedia.org/wiki/Amiga#cite_note-0">[1]</a></sup> and because it occurred before <a href="http://en.wikipedia.org/wiki/Apple_Inc">Apple</a> and <a href="http://en.wikipedia.org/wiki/Atari">Atari</a> alphabetically.<sup><a href="http://en.wikipedia.org/wiki/Amiga#cite_note-1">[2]</a></sup></p>
<p>Based on the <a href="http://en.wikipedia.org/wiki/Motorola_68k">Motorola 68k</a> series of <a href="http://en.wikipedia.org/wiki/Microprocessor">microprocessors</a>, the machine sports a <a href="http://en.wikipedia.org/wiki/Original_Amiga_chipset">custom chipset</a> with advanced graphics and sound capabilities, and a <a href="http://en.wikipedia.org/wiki/Pre-emptive_multitasking">pre-emptive multitasking</a> <a href="http://en.wikipedia.org/wiki/Operating_system">operating system</a> (now known as <a href="http://en.wikipedia.org/wiki/AmigaOS">AmigaOS</a>). While the M68k is a <a href="http://en.wikipedia.org/wiki/32-bit">32-bit</a> processor, the version originally used in the Amiga, the 68000, has a <a href="http://en.wikipedia.org/wiki/16-bit">16-bit</a> external <a href="http://en.wikipedia.org/wiki/Data_bus">data bus</a> (that transfers 32 bit of data in two consecutive steps, a technique called <a href="http://en.wikipedia.org/wiki/Multiplexing">multiplexing</a> -- all this transparent to the software, which is 32-bit from the beginning), and the original machine (along with its contemporary, the <a href="http://en.wikipedia.org/wiki/Atari_ST">Atari ST</a>) was generally referred to in the <a href="http://en.wikipedia.org/wiki/Print_media">press</a> as a 16-bit computer;<sup><a href="http://en.wikipedia.org/wiki/Amiga#cite_note-2">[3]</a></sup> later models sported fully 32-bit designs. The Amiga provided a significant upgrade from 8-bit computers such as the <a href="http://en.wikipedia.org/wiki/Commodore_64">Commodore 64</a>, and the Amiga quickly grew in popularity among computer enthusiasts, especially in <a href="http://en.wikipedia.org/wiki/Europe">Europe</a>, and sold approximately 6 million units.<sup><a href="http://en.wikipedia.org/wiki/Amiga#cite_note-3">[4]</a></sup></p>
<p>(<a title="http://en.wikipedia.org/wiki/Amiga" href="http://en.wikipedia.org/wiki/Amiga">http://en.wikipedia.org/wiki/Amiga</a>)</p></blockquote>
<p>Yep. It had a pre-emptive multitasking operating system in <strong><em>1985</em></strong>. For some context on how impressive this is:</p>
<blockquote><p>The earliest pre-emptive multitasking OS available to home users was the <a href="http://en.wikipedia.org/wiki/AmigaOS">AmigaOS</a> released in 1985. Pre-emptive multitasking was later adopted on Apple Macintoshes by <a href="http://en.wikipedia.org/wiki/MacOS">MacOS</a> 9.x <sup><a href="http://en.wikipedia.org/wiki/Computer_multitasking#cite_note-0">[1]</a></sup> as an additional API, i.e. the application could be programmed to use the pre-emptive or co-operative model, and all legacy applications were multitasked cooperatively within a single process. Mac OS X, being an <a href="http://en.wikipedia.org/wiki/Unix-like">Unix-like</a> system, uses pre-emptive multitasking for all native applications, although <a href="http://en.wikipedia.org/wiki/Classic_%28Mac_OS_X%29">Classic</a> applications may be multitasked cooperatively as they run in fact under Mac OS 9 running as OS X process.</p>
<p>(<a title="http://en.wikipedia.org/wiki/Computer_multitasking#Preemptive_multitasking.2Ftime-sharing" href="http://en.wikipedia.org/wiki/Computer_multitasking#Preemptive_multitasking.2Ftime-sharing">http://en.wikipedia.org/wiki/Computer_multitasking#Preemptive_multitasking.2Ftime-sharing</a>)</p></blockquote>
<p>It took Apple until MacOS 9.x to implement this as an additional API.</p>
<p><em>MacOS 9 was introduced in 1999. </em>(Granted, Windows NT/9x and Unix/Linux had this sooner than MacOS.)<em><br />
</em></p>
<p>Check it out. Definitely worth a look.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[A Few More Customer Requested Changes In APIs, Widgets, and Players]]></title>
<link>http://forsalebylocals.wordpress.com/2008/08/28/a-few-more-customer-requested-changes-in-apis-widgets-and-players/</link>
<pubDate>Thu, 28 Aug 2008 17:47:36 +0000</pubDate>
<dc:creator>forsalebylocals</dc:creator>
<guid>http://forsalebylocals.wordpress.com/2008/08/28/a-few-more-customer-requested-changes-in-apis-widgets-and-players/</guid>
<description><![CDATA[Video Conversion API: We&#8217;re wrapping up a few more changes on the still unreleased API after s]]></description>
<content:encoded><![CDATA[<p><strong>Video Conversion API:</strong> We're wrapping up a few more changes on the still unreleased API after some user beta testing.  Our beta folks made it clear that they want to be able to return to the preliminary XML file that is initially generated if they need to do so in their apps using the API. Therefore, we took a late change and are redirecting to a separate link to generate the preliminary XML for users that want to regenerate the original XML again...well....without converting the files in the source directory multiple times.</p>
<p><strong>Automated Conversion Widgets:</strong> These types of widgets have been live for a few days now.  The reception has been great and we are already involved in planning for a number of projects that will use the widget. So far, the two most requested additions to the widget are 1) a way to optionally configure a <em>&#34;Grab This Widget&#34;</em> link and 2) a smaller version of the widget that can fit in the sidebar section of a wordpress blog.  We heard your feedback and should be ready to release by tonight or tomorrow latest.</p>
<p><strong>Video Player Widgets:</strong>   We've applied the feedback about smaller sidebar-sized widgets to our video player widget as well.  So, now, we have a sidebar sized video player that can redirect viewers to your own site or play the video right in the page where the widget is embedded.</p>
<p><strong>Workaround For Embedded Widgets on Wordpress.com Blogs:</strong> We have a ridiculously simple workaround for embedding our video widgets on wordpress.com blogs that we are planning on releasing wordpress.com blogs. The workaround will be available as part of conversios done as part of the standalone upload page and also as part of the real estate social network Since we support youtube video and real estate shows in our own widget format, you'll be able to use the workaround for this content in the social network using our widget format as well.</p>
<p>Stay tuned.  More coming...</p>
]]></content:encoded>
</item>

</channel>
</rss>
