<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<title>wissel.net</title>
<description>Usability - Productivity - Business - The web - Singapore &amp; Twins</description>
<lastBuildDate>Wed, 22 May 2013 16:29:17 +0000</lastBuildDate>
<link>http://www.wissel.net/blog</link>
<language>en</language>

<image>
<title>wissel.net</title>
<url>http://www.wissel.net/blog/rss.gif</url>
<link>http://www.wissel.net/blog</link>
</image>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Wisselnet" /><feedburner:info uri="wisselnet" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site.</feedburner:browserFriendly><item>
<title>Don't try this at home!</title>
<link>http://feedproxy.google.com/~r/Wisselnet/~3/V2akYlSXOug/SHWL-97WPR9</link>
<description><![CDATA[ Domino has a refined security system, so the java.policy file can be a real PITA. So you would be tempted to write a few lines of LotusScript and run it on a scheduled agent, so on the next server restart that pain goes away. Of course you wouldn't write code ... ]]></description>
<dc:creator>Stephan H Wissel</dc:creator>
<comments>http://www.wissel.net/blog/d6plinks/SHWL-97WPR9?Open</comments>
<guid isPermaLink="false">http://www.wissel.net/blog/d6plinks/SHWL-97WPR9?Open</guid>
<content:encoded><![CDATA[ Domino has a refined security system, so the <a href="https://www.google.com/search?q=Domino+XPages+java.policy">java.policy</a> file can be a real PITA. So you would be tempted to write a few lines of LotusScript and run it on a scheduled agent, so on the next server restart that pain goes away. Of course you wouldn't write code like below which lacks any error handling.You also would not hide this code from your admin people who would want an impact study and your firstborn for any change they make. So instead of doing all this you wait until there is a proper configuration setting for this.
<div class="lotusscript"><span class="kw1">Option</span> <span class="kw1">Public</span><br />
<span class="kw1">Option</span> <span class="kw1">Declare</span><br />
<br />
<span class="kw1">Sub</span> Initialize<br />
&nbsp; &nbsp; <span class="kw1">Dim</span> s <span class="kw1">As</span> <span class="kw1">New</span> <span class="kw2">NotesSession</span><br />
&nbsp; &nbsp; <span class="kw1">Dim</span> inikey <span class="kw1">As</span> <span class="kw1">String</span><br />
&nbsp; &nbsp; <span class="kw1">Dim</span> secFileName <span class="kw1">As</span> <span class="kw1">String</span><br />
&nbsp; &nbsp; <span class="kw1">Dim</span> stream <span class="kw1">As</span> <span class="kw2">NotesStream</span><br />
&nbsp; &nbsp; <span class="kw1">Dim</span> policy <span class="kw1">As</span> <span class="kw1">String</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span class="kw1">Dim</span> beginString <span class="kw1">As</span> <span class="kw1">String</span><br />
&nbsp; &nbsp; <span class="kw1">Dim</span> endString <span class="kw1">As</span> <span class="kw1">String</span><br />
&nbsp; &nbsp; <span class="kw1">Dim</span> permission <span class="kw1">As</span> <span class="kw1">String</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span class="kw1">Dim</span> beginPos <span class="kw1">As</span> <span class="kw1">Integer</span><br />
&nbsp; &nbsp; <span class="kw1">Dim</span> endPos <span class="kw1">As</span> <span class="kw1">Integer</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; inikey = <span class="st0">&quot;NotesProgram&quot;</span><br />
&nbsp; &nbsp; beginString = <span class="st0">&quot;grant {&quot;</span><br />
&nbsp; &nbsp; endString = <span class="st0">&quot;}&quot;</span><br />
&nbsp; &nbsp; secFileName = s.<span class="me1">Getenvironmentstring</span><span class="br0">&#40;</span>iniKey, <span class="kw1">true</span><span class="br0">&#41;</span><br />
&nbsp; &nbsp; secFileName = secFileName + <span class="st0">&quot;jvm/lib/security/java.policy&quot;</span><br />
&nbsp; &nbsp; permission = <span class="st0">&quot;permission java.security.AllPermission;&quot;</span><br />
&nbsp; &nbsp; <span class="kw1">Set</span> stream = s.<span class="me1">Createstream</span><span class="br0">&#40;</span><span class="br0">&#41;</span><br />
&nbsp; &nbsp; <span class="kw1">Call</span> stream.<span class="kw1">Open</span><span class="br0">&#40;</span>secFileName<span class="br0">&#41;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; policy = stream.<span class="me1">Readtext</span><span class="br0">&#40;</span><span class="br0">&#41;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; beginPos = <span class="kw1">InStr</span><span class="br0">&#40;</span>policy,beginString<span class="br0">&#41;</span><br />
&nbsp; &nbsp; <span class="kw1">If</span> beginPos &lt; <span class="nu0">1</span> <span class="kw1">Then</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">'We don't have any so we abort</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">Exit</span> <span class="kw1">sub</span><br />
&nbsp; &nbsp; <span class="kw1">End</span> <span class="kw1">If</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span class="kw1">Dim</span> firstCut <span class="kw1">As</span> <span class="kw1">String</span><br />
&nbsp; &nbsp; firstCut = <span class="kw1">Mid$</span><span class="br0">&#40;</span>policy,beginPos<span class="br0">&#41;</span><br />
&nbsp; &nbsp; endPos = <span class="kw1">InStr</span><span class="br0">&#40;</span>firstCut,endString<span class="br0">&#41;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span class="kw1">If</span> endPos &lt; <span class="nu0">1</span> <span class="kw1">Then</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">'The file is borked</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">Exit</span> <span class="kw1">Sub</span><br />
&nbsp; &nbsp; <span class="kw1">End</span> <span class="kw1">If</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span class="kw1">Dim</span> allGrant <span class="kw1">As</span> <span class="kw1">String</span><br />
&nbsp; &nbsp; allGrant = <span class="kw1">Mid$</span><span class="br0">&#40;</span>firstCut,<span class="nu0">1</span>,endPos<span class="br0">&#41;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span class="co1">'Now the check</span><br />
&nbsp; &nbsp; <span class="kw1">If</span> <span class="kw1">InStr</span><span class="br0">&#40;</span>allGrant,permission<span class="br0">&#41;</span> &lt; <span class="nu0">1</span> <span class="kw1">Then</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">'We need to update the file</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">Call</span> stream.<span class="me1">Truncate</span><span class="br0">&#40;</span><span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">Call</span> stream.<span class="me1">Writetext</span><span class="br0">&#40;</span><span class="kw1">Mid$</span><span class="br0">&#40;</span>policy,<span class="nu0">1</span>,beginPos+<span class="nu0">7</span><span class="br0">&#41;</span>, EOL_NONE<span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">Call</span> stream.<span class="me1">Writetext</span><span class="br0">&#40;</span>permission, EOL_PLATFORM<span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">Call</span> stream.<span class="me1">Writetext</span><span class="br0">&#40;</span><span class="kw1">Mid$</span><span class="br0">&#40;</span>policy,beginPos+<span class="nu0">7</span><span class="br0">&#41;</span>, EOL_NONE<span class="br0">&#41;</span><br />
&nbsp; &nbsp; <span class="kw1">End</span> <span class="kw1">If</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span class="kw1">Call</span> stream.<span class="kw1">Close</span><span class="br0">&#40;</span><span class="br0">&#41;</span><br />
<span class="kw1">End</span> <span class="kw1">Sub</span></div>
As usual YMMV ]]></content:encoded>
<pubDate>Tue, 21 May 2013 18:32:19 +0000</pubDate>
<slash:comments>11</slash:comments>
<category>XPages</category>
<feedburner:origLink>http://www.wissel.net/blog/d6plinks/SHWL-97WPR9?Open</feedburner:origLink></item>
<item>
<title>Enterprise 2.0 and weight loss - siblings separated at birth?</title>
<link>http://feedproxy.google.com/~r/Wisselnet/~3/21nAdxizAAc/SHWL-97PMFY</link>
<description><![CDATA[ This blog entry is inspired and largely translated from this German article authored by enterprise consultant Andreas Schulze-Kopp. Having gone through some personal transformation (final results in November) myself, I found Andreas' comparison of Enterprise ... ]]></description>
<dc:creator>Stephan H Wissel</dc:creator>
<comments>http://www.wissel.net/blog/d6plinks/SHWL-97PMFY?Open</comments>
<guid isPermaLink="false">http://www.wissel.net/blog/d6plinks/SHWL-97PMFY?Open</guid>
<content:encoded><![CDATA[ This blog entry is inspired and largely translated from <a href="http://schulzekopp.de/2013/04/30/enterprise-2-0-und-diat-wie-geht-das-zusammen-so/">this German article</a> authored by enterprise consultant <a href="https://www.xing.com/profile/Andreas_SchulzeKopp">Andreas Schulze-Kopp</a>. Having gone through some <a href="http://www.precisionnutrition.com/coaching">personal transformation</a> (final results in November) myself, I found Andreas' comparison of Enterprise 2.0 initiatives and weight loss programs intriguing.<br />
The tasks are comparable: alter habits, break through the mould of old behavioural pattern (a.k.a processes in business lingo) show enough determination and will power to see it through. While Andreas provides an "<a href="http://schulzekopp.de/wp-content/uploads/2013/04/belly-2473_1280-628x400.jpg">Augenweide</a>" I'll offer (only) a mindmap. (Buzan's own iMindMap ditched their Linux development, so I'm switching to <a href="http://www.xmind.net/">XMind</a>).<br />
<img src="/blog/Images/SHWL-97PMVW/$File/e2wl640.jpg" border="0" alt="Enterprise 2.0 and Weight loss" />

<h2>Change of habits</h2>
Without rethinking habits and processes neither a social business project nor the latest, greatest diet have any chance for sustainable success. Change is inevitable and needs to be embraced openly. Don't commit the folly presuming to get it right the first time, so even the change process needs adjustment, change changes. As with the diet: <b>Start moving!</b>. Without movement both your weight loss and your social business initiative are dead in the water.
<h2>Process cleanup</h2>
Once you got rid of old habits, your procedures and processed need to be adjusted or terminated. There is no more space for the sugar bomb in the freezer or the Monday morning spreadshit in the inbox. You drink green tea and the latest figures are either in the <a href="http://www.sugarcrm.com/ibm/connections">Social CRM</a> or in your openly shared files.

<h2>Will power</h2>
The key ingredient! Without the unwavering will to see it through both can't be sustained. Unavoidable setbacks and negative experiences can be offset by determination. The determination to continue even if initially you lost a few pounds only, despite feeling hungry and moving a lot. The determination to see the project through even when the initial project acceptance isn't stellar and contributions stay sparse.

<h2>Conviction</h2>
A life style change (induced by a diet) and an enterprise 2.0 project must be backed by the conviction to do the right thing. If I'm not convinced my willpower will wafer and I soon find myself crafting excuses to exit. Senior management must be a role model and participate <b>authentic</b> in the enterprise 2.0. Employees have a fine BS radar and "lip-service only" participation of senior management will result in lip-service only imitation and ultimately failure.<br />
Will power is fuelled by conviction and conviction needs to be fuelled by vision. Where do I want to be: "Envision you look into the mirror and you love what you see". Or to use <a href="http://en.wikipedia.org/wiki/Antoine_de_Saint-Exup%C3%A9ry">Antoine's</a> words: "<i>If you want to build a ship, don't drum up people to collect wood and don't assign them tasks and work, but rather teach them to long for the endless immensity of the sea</i>". 

<h2>Patience and endurance</h2>
Rome wasn't built in a day, real change in shape and organisation take time. In a time where the cadence of most organisations is determined by their quarterly reports, patience is a rather rare commodity. The temptation is great to increase the pressure to see results now, only to face a backslash shortly thereafter. Behaviour and understanding are no simple switches that can be flipped, their fundamental changes need to be practised and settle in

<h2>The Jo-Jo effect</h2>
Easy goes, easy comes (daily mourning of a "diet pro"). Changing your shape, personally and in the enterprise requires permanent changes in behaviour and attitude. A short term, high effort, fast paced program can't sustain (even if lots of organisations <a href="http://www.amazon.de/Supramanie-Vom-Pflichtmenschen-zum-Score-Man/dp/3540305343" title="Supramanie, sorry German only">think so</a>), once the effort fizzles out (typically replaced by another corporate wide initiative) old habits resurface, old processes get reinstated and goals get abandoned. The organisation bounces back to old habits. Changing habits takes time, allocating to little of it dooms any project.

<h2>The support group</h2>
Working out, moving, doing things different makes more fun in the <a href="http://www.meetup.com/Singapore-Adventurous-Group/">right company</a>. Members in a group motivate, compete and catch each other. The same is true for the enterprise 2.0 projects. Group dynamics will require skilled leaders. This is where your social champions become crystallisation points for the social transformation.

<h2>Counting vs. quality</h2>
Remember (or ask one who remembers) how counting calories in the last diet sucked big time. It feels like being restricted. A good diet rather improves on the quality and variation of food, so portions can shrink. The same applies to the enterprise 2.0 space. If all that is cared for are numbers, employees feel additional pressures and will time and again prove their creativity in gaming the metric - not the result you are working for. Focus on quality!

<h2>The tools</h2>
There is a whole industry catering to weight loss candidates - as there is for enterprise 2.0. If running is your weapon of choice, you should have good shoes. Measuring <a href="http://quantifiedself.com/">vital signs</a> makes sense too, you don't want to waste effort (too low) or kill yourself (too high). The same applies in the organisation. Tools on their own have no effect (think sport shoes in the closet), but with the other items in this little list they can make success easier. Pick them well and in line with your goals (having "share" in the name doesn't make it social by default).

<br /><br />
This list by far isn't complete and you are welcome to add your own thoughts ]]></content:encoded>
<pubDate>Tue, 14 May 2013 16:35:04 +0000</pubDate>
<slash:comments>0</slash:comments>
<category>Business</category>
<feedburner:origLink>http://www.wissel.net/blog/d6plinks/SHWL-97PMFY?Open</feedburner:origLink></item>
<item>
<title>Modernizing Notes applications - lessons from the trenches</title>
<link>http://feedproxy.google.com/~r/Wisselnet/~3/Wq7fok9_3_E/SHWL-97JCBP</link>
<description><![CDATA[ Not only since mobile first became fashionable corporations are trying to ditch the Lotus IBM Notes client - for various reasons.
These efforts were branded "modernization", "web enablement", "mobile enablement" or if a competitor had a word "migration". ... ]]></description>
<dc:creator>Stephan H Wissel</dc:creator>
<comments>http://www.wissel.net/blog/d6plinks/SHWL-97JCBP?Open</comments>
<guid isPermaLink="false">http://www.wissel.net/blog/d6plinks/SHWL-97JCBP?Open</guid>
<content:encoded><![CDATA[ Not only since <a href="http://www.ibm.com/mobilefirst/us/en/">mobile</a> <a href="http://designshack.net/articles/css/mobilefirst/">first</a> became <a href="http://googlemobile.blogspot.kr/2010/02/barcelona-mobile-first.html">fashionable</a> corporations are trying to ditch the <strike>Lotus</strike> IBM Notes client - for <a href="https://www.google.com/search?q=lotus+notes+client+performance">various reasons</a>.<br />
These efforts were branded "<i>modernization</i>", "<i>web enablement</i>", "<i>mobile enablement</i>" or if a competitor had a word "<a href="http://www.bleedyellow.com/blogs/dotdomino/entry/replacing_notes_here_s_how_it_really_goes_down4?lang=en_us">migration</a>". Initially there was hope that this would be a short, painless and <a href="http://www.edbrill.com/ebrill/edbrill.nsf/dx/gbs-launches-transformer-2.0">automated process</a> (the upgrades, not the <a href="http://www.slideshare.net/ktree19/replacing-ltus-notes-heres-how-it-really-goes-down">migrations</a> that is). But reality taught a few facts that you need to consider:
<ul>
<li>A Rich Client is based on RichText, a browser client on HTML. There is no 1:1 mapping (otherwise one format would be superfluous), only some approximation (just ask <a href="http://www.geniisoft.com/showcase.nsf/CoexEdit">Ben</a> about it). Much more: there is no 1:1 mapping of the event models and APIs. So any automation would lead to incredible hacks</li>
<li>The Notes client's and Domino server's <a href="http://en.wikipedia.org/wiki/LotusScript">LotusScript</a> runtimes are, while dated, incredibly robust and forgiving. The amount of <a href="http://en.wikipedia.org/wiki/Spagetti_code">OMG code</a> I've seen in Notes applications (including my own <img src="http://www.wissel.net/blog/emoticons/DLYH-5MZVLY/$File/smile.gif"> ) tops any other platform.<br />
Still that code gets the job done and out of the way. However that doesn't translate into another language in an <a href="https://twitter.com/notessensei/status/325072258232102912">automated fashion</a>, but rather demands the repayment of quite some <a href="http://en.wikipedia.org/wiki/Technical_debt">technical debt</a></li>
<li>Code that gets a client with one user <a href="/blog/d6plinks/SHWL-8Z4NCS">huffing and puffing</a> can't simply be expected to run for hundreds or thousands of users on a single server</li>
<li>Users expect web (and mobile) applications to be fresh and modern. If <a href="http://www.imdb.com/title/tt1298650/">Jack Sparrow</a> couldn't find the <a href="http://en.wikipedia.org/wiki/Fountain_of_Youth">fountain of youth</a>, how can an automated tool do that?<br />
This is a clear conflict of interest between the users ("<i>shall be modern and fresh</i>") and the ones paying for it ("<i>make it work in a browser, fast &amp cheap</i>") - a classic for <a href="http://futureofwork.glider.com/why-enterprise-software-sucks/">Why enterprise software sucks</a>
<br />
John D. Head clearly outlines <a href="http://www.johndavidhead.com/jhead/johnhead.nsf/dx/time-to-up-our-game-in-how-we-demo-xpages">expectations and possibilities</a> for modern user interfaces. Teamstudio provides a nice set of modern <a href="https://github.com/unplugged/unplugged-controls/wiki">mobile controls</a> (that even work offline for <a href="http://unplugged.teamstudio.com/">a fee</a>)</li>
<li>The amount of Notes applications mostly get underestimated greatly. Use a scientific method to <a href="/blog/d6plinks/SHWL-8QTJZ3">create evidence</a></li>
</ul>
So damn if you don't, damn if you do? Not quite. In an approach Peter calls <a href="http://www.bleedyellow.com/blogs/dotdomino/entry/replacing_lotus_notes_go_asymmetric?lang=en_us">Asymmetric Modernization</a> you step back from the tree to see <a href="https://www.google.com/search?q=don%27t+see+the+forest+for+the+trees">the forest</a>. Instead of looking the usual Notes way "<i>application-by-application</i>", see the sum of the applications and <a href="http://www.youtube.com/watch?v=8CP9dg38cAI" style="text-decoration : none"><strike>wipe them out, all of them</strike></a> <a href="http://nathantfreeman.wordpress.com/2013/05/08/modernization-in-bullet-time/">modernize them all in one go</a> (it is called <a href="http://en.wikipedia.org/wiki/Economies_of_scale">economy of scale</a>).<br />
Nathan and Peter share <a href="http://www.youtube.com/watch?v=t_IRABBbPis&vq=hd1080">a video</a>, the modernization of <a href="http://www.slideshare.net/ktree19/redpill-mobile-case-study-1-appendix-a-nifty-fifty">the nifty-fifty</a>, a recent <a href="http://www.slideshare.net/ktree19/redpill-mobile">case study</a> and the <a href="http://redpilldevelopment.com/show-case/">service offering</a>. <b>Go check them out</b>.<br />
The biggest issue I see with this approach is the usual cautious stand in IT today:"<i>let us do one (insignificant) application first and see how it goes. Then we linearly extrapolate and get scared</i>" That is the total opposite of <a href="http://www.bleedyellow.com/blogs/dotdomino/entry/replacing_lotus_notes_go_asymmetric?lang=en_us">Asymmetric Modernization</a>, so it will require clever <a href="http://en.wikipedia.org/wiki/Persuasion">persuasion</a> to get a project approved.<br />
As usual YMMV ]]></content:encoded>
<pubDate>Thu, 09 May 2013 08:47:26 +0000</pubDate>
<slash:comments>5</slash:comments>
<category>XPages</category>
<feedburner:origLink>http://www.wissel.net/blog/d6plinks/SHWL-97JCBP?Open</feedburner:origLink></item>
<item>
<title>CRM &gt; Sales Tracking</title>
<link>http://feedproxy.google.com/~r/Wisselnet/~3/538Xh7iA68E/SHWL-97CCU7</link>
<description><![CDATA[ IBM is ditching Siebel CRM in favour of SugarCRM. Cloud based CRM was made popular by SalesForce while Zoho wants a share of the pie too.
All to often CRM offers or is used as sales force automation tool, which it is not (only). But what makes a good CRM? It ... ]]></description>
<dc:creator>Stephan H Wissel</dc:creator>
<comments>http://www.wissel.net/blog/d6plinks/SHWL-97CCU7?Open</comments>
<guid isPermaLink="false">http://www.wissel.net/blog/d6plinks/SHWL-97CCU7?Open</guid>
<content:encoded><![CDATA[ IBM is ditching Siebel CRM in favour of <a href="http://www.sugarcrm.com/">SugarCRM</a>. Cloud based <a href="https://en.wikipedia.org/wiki/Customer_relationship_management">CRM</a> was made popular by <a href="http://www.salesforce.com/">SalesForce</a> while <a href="http://www.zoho.com/">Zoho</a> wants a share of the pie too.<br />
All to often CRM offers or is used as sales force automation tool, which it is not (only). But what makes a good CRM? It needs to provide access to anything that relates to a customer. Doh - that's what the name claims.<br />
<a href="/blog/Images/SHWL-97CCTX/$File/CRM1920.jpg"><img src="http://www.wissel.net/blog/Images/SHWL-97CCTX/$File/CRM640.jpg" border="0" alt="Wide view of customer relationship management" /></a><br />
In larger organisations CRM typically is understood very narrowly as sales tracking tool, the broader definition as outlined above gets covered by a combination of Portal on the front (a.k.a glass level) and master data management (<a href="http://en.wikipedia.org/wiki/Master_data_management">MDM</a>). Smaller organisations don't have that luxury. There an integrated system makes most sense.<br />
Now guess on what platform those have been built. A little selection (in no specific order and not complete):
<ul>
<li><a href="http://www.weilgut.de/weilgut2_en.nsf/id/pa_home_hw">Haus Weilgut</a> (They sold me my first Notes 2 license and they are still around)</li>
<li><a href="http://www.gedys-intraware.com/">Gedys Intraware</a></li>
<li><a href="http://www.gbs.com/en/crm">GBS CRM</a></li>
<li><a href="http://en.it-stream.com/crm-stream">IT Stream</a></li>
<li><a href="http://www.basic.co.uk/crm.htm">Basic UK</a></li>
<li><a href="http://www.trackersuite.com/lotus_domino_software.html">Tracker Suite</a></li>
<li><a href="http://www.salesplace.com/">Salesplace</a> (Part of GBS)</li>
<li><a href="http://www.360-systems.com/content/applications/lotus-notes-contact-manager">360 Systems</a></li>
<li><a href="http://www.ardexus.com/">Ardexus</a></li>
</ul>
As usual YMMV ]]></content:encoded>
<pubDate>Sun, 05 May 2013 13:13:00 +0000</pubDate>
<slash:comments>0</slash:comments>
<category>Singapore</category>
<feedburner:origLink>http://www.wissel.net/blog/d6plinks/SHWL-97CCU7?Open</feedburner:origLink></item>
<item>
<title>Dear SingTel, please fix your routing performance!</title>
<link>http://feedproxy.google.com/~r/Wisselnet/~3/jVqrxbgIbW4/SHWL-9744E8</link>
<description><![CDATA[ Slashdot asked for the latency to their site, so I ran a few tests with pretty consistent results in the 250ms range. Slashdot labels that as "still stuck on dialup or in space". Their expectations for overseas users was 80 to 150ms. Puzzled by the result ... ]]></description>
<dc:creator>Stephan H Wissel</dc:creator>
<comments>http://www.wissel.net/blog/d6plinks/SHWL-9744E8?Open</comments>
<guid isPermaLink="false">http://www.wissel.net/blog/d6plinks/SHWL-9744E8?Open</guid>
<content:encoded><![CDATA[ Slashdot asked for the <a href="http://slashdot.org/poll/2563">latency to their site</a>, so I ran a few tests with pretty consistent results in the 250ms range. Slashdot labels that as "still stuck on dialup or in space". Their expectations for overseas users was 80 to 150ms. Puzzled by the result (local websites typically respond in the sub 2ms range), I used <a href="http://www.exit109.com/~jeremy/news/providers/traceroute.html">traceroute</a> to get to the bottom of this. Here are the results:
<style type="text/css">td.Default {border-right : 1px dotted #CCCCCC; border-bottom : 1px dotted #EEEEEE; padding : 1px}</style>
<table cellspacing="0" dir="ltr" id="Sheet1table" style="margin-top:0;margin-bottom:0;border-collapse:separate;border-spacing:0;table-layout:fixed;white-space:nowrap">
        <tr style="height:16.1376px">
          <td class="Default" style="border-top:none;border-bottom:1.0px solid #000000;border-left:none;border-right:none;text-align:right;font-weight:bold;vertical-align:bottom;width:85.344px">Hop</td>
          <td class="Default" style="border-top:none;border-bottom:1.0px solid #000000;border-left:none;border-right:none;font-weight:bold;vertical-align:bottom;width:118.6752px;text-align:left">IP</td>
          <td class="Default" style="border-top:none;border-bottom:1.0px solid #000000;border-left:none;border-right:none;font-weight:bold;vertical-align:bottom;width:320.39038px;text-align:left">DNS Name</td>
          <td class="Default" style="border-top:none;border-bottom:1.0px solid #000000;border-left:none;border-right:none;text-align:right;font-weight:bold;vertical-align:bottom;width:77.4816px">Packet 1</td>
          <td class="Default" style="border-top:none;border-bottom:1.0px solid #000000;border-left:none;border-right:none;text-align:right;font-weight:bold;vertical-align:bottom;width:110.399994px">Packet 2</td>
          <td class="Default" style="border-top:none;border-bottom:1.0px solid #000000;border-left:none;border-right:none;text-align:right;font-weight:bold;vertical-align:bottom;width:118.6752px">Packet 3</td>
          <td class="Default" style="border-top:none;border-bottom:1.0px solid #000000;border-left:none;border-right:none;text-align:right;font-weight:bold;vertical-align:bottom;width:109.42079px">AVG</td>
          <td class="Default" style="border-top:none;border-bottom:1.0px solid #000000;border-left:none;border-right:none;text-align:right;font-weight:bold;vertical-align:bottom;width:85.344px">Delta</td>
        </tr>
        <tr style="height:16.1376px">
          <td class="Default" style="width:85.344px;text-align:right">1</td>
          <td class="Default" style="width:118.6752px;text-align:left">192.168.1.1</td>
          <td class="Default" style="width:320.39038px;text-align:left">router</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:right">0.3730</td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:right">0.5390</td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:right">0.3200</td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:right">0.4107</td>
          <td class="Default" style="width:85.344px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
        </tr>
        <tr style="height:16.1376px">
          <td class="Default" style="width:85.344px;text-align:right">2</td>
          <td class="Default" style="width:118.6752px;text-align:left">202.166.123.170</td>
          <td class="Default" style="width:320.39038px;text-align:left">(202.166.123.170)</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:right">5.9160</td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:right">4.8020</td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:right">4.7630</td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:right">5.1603</td>
          <td class="Default" style="vertical-align:bottom;width:85.344px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
        </tr>
        <tr style="height:16.1376px">
          <td class="Default" style="width:85.344px;text-align:right">3</td>
          <td class="Default" style="width:118.6752px;text-align:left">202.166.123.169</td>
          <td class="Default" style="width:320.39038px;text-align:left">(202.166.123.169)</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:right">2.7000</td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:right">2.6150</td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:right">2.8210</td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:right">2.7120</td>
          <td class="Default" style="vertical-align:bottom;width:85.344px;text-align:right">-47.45%</td>
        </tr>
        <tr style="height:16.1376px">
          <td class="Default" style="width:85.344px;text-align:right">4</td>
          <td class="Default" style="width:118.6752px;text-align:left">202.166.121.101</td>
          <td class="Default" style="width:320.39038px;text-align:left">(202.166.121.101)</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:right">3.7700</td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:right">2.8390</td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:right">2.5490</td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:right">3.0527</td>
          <td class="Default" style="vertical-align:bottom;width:85.344px;text-align:right">12.56%</td>
        </tr>
        <tr style="height:16.1376px">
          <td class="Default" style="width:85.344px;text-align:right">5</td>
          <td class="Default" style="width:118.6752px;text-align:left">202.166.120.186</td>
          <td class="Default" style="width:320.39038px;text-align:left">(ae6-0.singha.singnet.com.sg)</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:right">2.8160</td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:right">7.1180</td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:right">3.6210</td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:right">4.5183</td>
          <td class="Default" style="vertical-align:bottom;width:85.344px;text-align:right">48.01%</td>
        </tr>
        <tr style="height:16.1376px">
          <td class="Default" style="width:85.344px;text-align:right">6</td>
          <td class="Default" style="width:118.6752px;text-align:left">202.166.126.41</td>
          <td class="Default" style="width:320.39038px;text-align:left">(ae5-0.beck.singnet.com.sg)</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:right">29.7140</td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:right">3.1530</td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:right">2.9850</td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:right">11.9507</td>
          <td class="Default" style="vertical-align:bottom;width:85.344px;text-align:right">164.49%</td>
        </tr>
        <tr style="height:16.1376px">
          <td class="Default" style="width:85.344px;text-align:right">7</td>
          <td class="Default" style="width:118.6752px;text-align:left">203.208.190.130</td>
          <td class="Default" style="width:320.39038px;text-align:left">(203.208.190.130)</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:right">6.1800</td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:right">3.6980</td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:right">3.0630</td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:right">4.3137</td>
          <td class="Default" style="vertical-align:bottom;width:85.344px;text-align:right">-63.90%</td>
        </tr>
        <tr style="height:16.857601px">
          <td class="Default" style="width:85.344px;text-align:right">8</td>
          <td class="Default" style="width:118.6752px;text-align:left">203.208.182.153</td>
          <td class="Default" style="width:320.39038px;text-align:left">(ge-4-0-6-0.sngc3-cr2.ix.singtel.com)</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:right">3.0040</td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
          <td class="Default" style="vertical-align:bottom;width:85.344px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
        </tr>
        <tr style="height:16.857601px">
          <td class="Default" style="width:85.344px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
          <td class="Default" style="width:118.6752px;text-align:left">203.208.151.177</td>
          <td class="Default" style="width:320.39038px;text-align:left">(ge-0-1-7-0.sngtp-dr1.ix.singtel.com)</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:right">3.9300</td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:right">2.9730</td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:right">3.3023</td>
          <td class="Default" style="vertical-align:bottom;width:85.344px;text-align:right">-23.44%</td>
        </tr>
        <tr style="height:16.1376px">
          <td class="Default" style="font-weight:bold;color:#ff0000;vertical-align:bottom;width:85.344px;text-align:right">9</td>
          <td class="Default" style="font-weight:bold;color:#ff0000;vertical-align:bottom;width:118.6752px;text-align:left">203.208.171.186</td>
          <td class="Default" style="font-weight:bold;color:#ff0000;vertical-align:bottom;width:320.39038px;text-align:left">(203.208.171.186)</td>
          <td class="Default" style="font-weight:bold;color:#ff0000;vertical-align:bottom;width:77.4816px;text-align:right">180.7350</td>
          <td class="Default" style="font-weight:bold;color:#ff0000;vertical-align:bottom;width:110.399994px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
          <td class="Default" style="font-weight:bold;color:#ff0000;vertical-align:bottom;width:118.6752px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
          <td class="Default" style="font-weight:bold;color:#ff0000;vertical-align:bottom;width:109.42079px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
          <td class="Default" style="font-weight:bold;color:#ff0000;vertical-align:bottom;width:85.344px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
        </tr>
        <tr style="height:16.1376px">
          <td class="Default" style="font-weight:bold;color:#ff0000;vertical-align:bottom;width:85.344px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
          <td class="Default" style="font-weight:bold;color:#ff0000;vertical-align:bottom;width:118.6752px;text-align:left">203.208.153.162</td>
          <td class="Default" style="font-weight:bold;color:#ff0000;vertical-align:bottom;width:320.39038px;text-align:left">(203.208.153.162)</td>
          <td class="Default" style="font-weight:bold;color:#ff0000;vertical-align:bottom;width:77.4816px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
          <td class="Default" style="font-weight:bold;color:#ff0000;vertical-align:bottom;width:110.399994px;text-align:right">193.0680</td>
          <td class="Default" style="font-weight:bold;color:#ff0000;vertical-align:bottom;width:118.6752px;text-align:right">192.9220</td>
          <td class="Default" style="font-weight:bold;color:#ff0000;vertical-align:bottom;width:109.42079px;text-align:right">188.9083</td>
          <td class="Default" style="font-weight:bold;color:#ff0000;vertical-align:bottom;width:85.344px;text-align:right">5620.45%</td>
        </tr>
        <tr style="height:16.1376px">
          <td class="Default" style="width:85.344px;text-align:right">10</td>
          <td class="Default" style="width:118.6752px;text-align:left">203.208.171.154</td>
          <td class="Default" style="width:320.39038px;text-align:left">(203.208.171.154)</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:right">185.7070</td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
          <td class="Default" style="vertical-align:bottom;width:85.344px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
        </tr>
        <tr style="height:16.1376px">
          <td class="Default" style="width:85.344px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
          <td class="Default" style="width:118.6752px;text-align:left">203.208.171.158</td>
          <td class="Default" style="width:320.39038px;text-align:left">(203.208.171.158)</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:left">
            <p style="margin:0;font-size:1px"> </p>
          </td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:right">189.3080</td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:right">189.1780</td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:right">188.0643</td>
          <td class="Default" style="vertical-align:bottom;width:85.344px;text-align:right">-0.45%</td>
        </tr>
        <tr style="height:16.1376px">
          <td class="Default" style="width:85.344px;text-align:right">11</td>
          <td class="Default" style="width:118.6752px;text-align:left">67.17.192.141</td>
          <td class="Default" style="width:320.39038px;text-align:left">(67.17.192.141)</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:right">185.5320</td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:right">181.1660</td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:right">181.5870</td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:right">182.7617</td>
          <td class="Default" style="vertical-align:bottom;width:85.344px;text-align:right">-2.82%</td>
        </tr>
        <tr style="height:16.857601px">
          <td class="Default" style="width:85.344px;text-align:right">12</td>
          <td class="Default" style="width:118.6752px;text-align:left">64.208.27.50</td>
          <td class="Default" style="width:320.39038px;text-align:left">(savvis-1.ar4.SJC2.gblx.net)</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:right">192.5370</td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:right">185.9260</td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:right">185.3730</td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:right">187.9453</td>
          <td class="Default" style="vertical-align:bottom;width:85.344px;text-align:right">2.84%</td>
        </tr>
        <tr style="height:16.857601px">
          <td class="Default" style="width:85.344px;text-align:right">13</td>
          <td class="Default" style="width:118.6752px;text-align:left">206.28.98.117</td>
          <td class="Default" style="width:320.39038px;text-align:left">(cr2-te-0-5-0-1.sfo.savvis.net)</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:right">185.3240</td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:right">201.3570</td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:right">202.9370</td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:right">196.5393</td>
          <td class="Default" style="vertical-align:bottom;width:85.344px;text-align:right">4.57%</td>
        </tr>
        <tr style="height:16.857601px">
          <td class="Default" style="width:85.344px;text-align:right">14</td>
          <td class="Default" style="width:118.6752px;text-align:left">204.70.196.246</td>
          <td class="Default" style="width:320.39038px;text-align:left">(cr2-tengig-0-7-0-0.chicago.savvis.net)</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:right">239.1180</td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:right">234.3400</td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:right">234.1810</td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:right">235.8797</td>
          <td class="Default" style="vertical-align:bottom;width:85.344px;text-align:right">20.02%</td>
        </tr>
        <tr style="height:16.857601px">
          <td class="Default" style="width:85.344px;text-align:right">15</td>
          <td class="Default" style="width:118.6752px;text-align:left">204.70.195.122</td>
          <td class="Default" style="width:320.39038px;text-align:left">(hr2-tengigabitethernet-12-1.elkgrovech3.savvis.net)</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:right">228.7670</td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:right">240.4970</td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:right">240.9600</td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:right">236.7413</td>
          <td class="Default" style="vertical-align:bottom;width:85.344px;text-align:right">0.37%</td>
        </tr>
        <tr style="height:16.857601px">
          <td class="Default" style="width:85.344px;text-align:right">16</td>
          <td class="Default" style="width:118.6752px;text-align:left">64.37.207.158</td>
          <td class="Default" style="width:320.39038px;text-align:left">(das5-v3032.ch3.savvis.net)</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:right">240.7050</td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:right">244.1670</td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:right">243.6270</td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:right">242.8330</td>
          <td class="Default" style="vertical-align:bottom;width:85.344px;text-align:right">2.57%</td>
        </tr>
        <tr style="height:16.1376px">
          <td class="Default" style="width:85.344px;text-align:right">17</td>
          <td class="Default" style="width:118.6752px;text-align:left">64.27.160.194</td>
          <td class="Default" style="width:320.39038px;text-align:left">(64.27.160.194)</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:right">240.7910</td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:right">264.4990</td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:right">253.7380</td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:right">253.0093</td>
          <td class="Default" style="vertical-align:bottom;width:85.344px;text-align:right">4.19%</td>
        </tr>
        <tr style="height:16.857601px">
          <td class="Default" style="width:85.344px;text-align:right">18</td>
          <td class="Default" style="width:118.6752px;text-align:left">216.34.181.45</td>
          <td class="Default" style="width:320.39038px;text-align:left">(slashdot.org)</td>
          <td class="Default" style="vertical-align:bottom;width:77.4816px;text-align:right">235.7960</td>
          <td class="Default" style="vertical-align:bottom;width:110.399994px;text-align:right">242.7860</td>
          <td class="Default" style="vertical-align:bottom;width:118.6752px;text-align:right">242.3070</td>
          <td class="Default" style="vertical-align:bottom;width:109.42079px;text-align:right">240.2963</td>
          <td class="Default" style="vertical-align:bottom;width:85.344px;text-align:right">-5.02%</td>
        </tr>
      </table><br />
Checking for the hosts that created that 5000% jump in latency it turns out, they are SingTel's:
<pre>stw@box:~$ whois 203.208.171.186
% [whois.apnic.net node-3]
% Whois data copyright terms    http://www.apnic.net/db/dbcopyright.html

inetnum:        203.208.171.128 - 203.208.171.191
netname:        SINGTEL-IX-AP
descr:          Singapore Telecommunications Pte Ltd
descr:          31C Exeter Road, Comcenter III
descr:          Unit #06-06
descr:          Singapore 239734
country:        SG
admin-c:        SAK3-AP
tech-c:         SAK3-AP
status:         ASSIGNED NON-PORTABLE
notify:         shanali@singtel.com
mnt-by:         MAINT-SINGTEL-IX
changed:        shanali@singtel.com 20070615
source:         APNIC

stw@box:~$ whois 203.208.153.162
% [whois.apnic.net node-5]
% Whois data copyright terms    http://www.apnic.net/db/dbcopyright.html

inetnum:        203.208.153.128 - 203.208.153.191
netname:        SINGTEL-IX-AP
descr:          Singapore Telecommunications Pte Ltd
descr:          31C Exeter Road, Comcenter III
descr:          Unit #06-06
descr:          Singapore 239734
country:        SG
admin-c:        SAK3-AP
tech-c:         SAK3-AP
status:         ASSIGNED NON-PORTABLE
notify:         shanali@singtel.com
mnt-by:         MAINT-SINGTEL-IX
changed:        shanali@singtel.com 20070615
source:         APNIC</pre><br />
Looks very much like an underperforming switch/router/filter. SingTel, please fix that! ]]></content:encoded>
<pubDate>Thu, 25 Apr 2013 02:01:53 +0000</pubDate>
<slash:comments>0</slash:comments>
<category>Buying Broadband</category>
<feedburner:origLink>http://www.wissel.net/blog/d6plinks/SHWL-9744E8?Open</feedburner:origLink></item>
<item>
<title>I want one</title>
<link>http://feedproxy.google.com/~r/Wisselnet/~3/lpWE9ipBV4o/SHWL-972ATG</link>
<description><![CDATA[ ... ]]></description>
<dc:creator>Stephan H Wissel</dc:creator>
<comments>http://www.wissel.net/blog/d6plinks/SHWL-972ATG?Open</comments>
<guid isPermaLink="false">http://www.wissel.net/blog/d6plinks/SHWL-972ATG?Open</guid>
<content:encoded><![CDATA[ <a href="http://www.montaguebikes.com/swissbike-x70-mountain-folding-bicycles.html"><img src="http://www.montaguebikes.com/assets/images/x70lg.jpg" title="Swissbike X70" border="0" width="640" /></a> ]]></content:encoded>
<pubDate>Tue, 23 Apr 2013 07:30:17 +0000</pubDate>
<slash:comments>1</slash:comments>
<category>After hours</category>
<feedburner:origLink>http://www.wissel.net/blog/d6plinks/SHWL-972ATG?Open</feedburner:origLink></item>
<item>
<title>MAMIL*</title>
<link>http://feedproxy.google.com/~r/Wisselnet/~3/p0nWqKgGB-s/SHWL-96YEWB</link>
<description><![CDATA[ Cycling in Singapore can be fun once you:

Find the right group
Do it at night
Are not afraid to cycle along an unlit Cemetery or ghosts


* Middle Aged Man In ... ]]></description>
<dc:creator>Stephan H Wissel</dc:creator>
<comments>http://www.wissel.net/blog/d6plinks/SHWL-96YEWB?Open</comments>
<guid isPermaLink="false">http://www.wissel.net/blog/d6plinks/SHWL-96YEWB?Open</guid>
<content:encoded><![CDATA[ Cycling in Singapore can be fun once you:
<ol>
<li>Find the <a href="http://www.meetup.com/Singapore-Adventurous-Group/">right group</a></li>
<li>Do it at night</li>
<li>Are not afraid to cycle along an unlit <a href="http://en.wikipedia.org/wiki/Choa_Chu_Kang_Cemetery">Cemetery</a> or <a href="http://gintai.wordpress.com/2012/07/26/is-there-any-ghost-have-you-met-a-ghost/">ghosts</a></li>
</ol>
<img src="/blog/Images/SHWL-96YEW4/$File/mamil2013.jpg" border="0" alt="Middle Aged Man in Lycra" /><br /><br />
* Middle Aged Man In Lycra ]]></content:encoded>
<pubDate>Sun, 21 Apr 2013 10:59:41 +0000</pubDate>
<slash:comments>6</slash:comments>
<category>After hours</category>
<feedburner:origLink>http://www.wissel.net/blog/d6plinks/SHWL-96YEWB?Open</feedburner:origLink></item>
<item>
<title>A more actionable Connections UI</title>
<link>http://feedproxy.google.com/~r/Wisselnet/~3/tZ4RNFyJXYs/SHWL-96WBMG</link>
<description><![CDATA[ IBM Connections is a two headed beast: on one hand it is a set of rich APIs offering different services (Status, Blogs, Wiki, Text, Activities etc) on the other it provides a set of UIs on top of this APIs. Yes, not one, but a set: Browser, Android, ... ]]></description>
<dc:creator>Stephan H Wissel</dc:creator>
<comments>http://www.wissel.net/blog/d6plinks/SHWL-96WBMG?Open</comments>
<guid isPermaLink="false">http://www.wissel.net/blog/d6plinks/SHWL-96WBMG?Open</guid>
<content:encoded><![CDATA[ IBM Connections is a two headed beast: on one hand it is a set of rich APIs offering different services (Status, Blogs, Wiki, Text, Activities etc) on the other it provides a set of UIs on top of this APIs. Yes, not one, but a set: Browser, Android, iShiny&#8482; and IBM Notes. I'm a big fan of the APIs. After all they stand for IBM's commitment to open standards and are build with <a href="http://www.w3.org/XML/">XML</a>, <a href="http://en.wikipedia.org/wiki/REST">REST</a>, <a href="http://en.wikipedia.org/wiki/Atom_%28standard%29">ATOM</a> and <a href="http://activitystrea.ms/">ActivityStreams</a> compliant to the <a href="http://www.opensocial.org/">OpenSocial</a> specifications.<br />
I'm not so sure about the UIs, especially the browser UI. While it is fiercely backward compatible in its browser support, it doesn't take advantage of modern browser capabilities (a all to common <a href="http://en.wikipedia.org/wiki/Catch-22_%28logic%29">Catch 22</a>: the general expectation is software to be bleeding edge but to work on all runtimes. Only slowly the idea takes hold "work on all runtimes" doesn't necessarily mean "is the same" and software embraces <a href="http://en.wikipedia.org/wiki/Fault-tolerant_system">graceful degradation</a> instead of the <a href="http://en.wikipedia.org/wiki/Lowest_common_denominator_%28computers%29#Lowest_common_denominator_strategy">least common denominator</a>. We might see that in Connections some time in the future too.<br />
Anyway, the API concept allows you to create your own UI without running foul of breaking the existing application. So I doodled around with my <a href="http://www.balsamiq.com/products/mockups">favourite mockup tool</a> how I would enhance the existing UI:<br />
<a href="/blog/Images/SHWL-96WBHD/$File/ShareboxEnhanced.png"><img src="/blog/Images/SHWL-96WBHD/$File/ShareboxEnhanced640.png" border="0" alt="A better Sharebox" /></a><br />
Following the concept of <a href="http://en.wikipedia.org/wiki/Progressive_disclosure">progressive disclosure</a> the entry box in the status update could be used to create any type of entry. It is quite paradoxical, that now I need to decide where (Status, Blog, Wiki, Activity etc.) to say something before I can say it. The what and where need to be more independent. By providing a single entry box this is absolutely possible.<br /> ]]></content:encoded>
<pubDate>Fri, 19 Apr 2013 08:11:56 +0000</pubDate>
<slash:comments>0</slash:comments>
<category>IBM Connections</category>
<category>Lotus Connections</category>
<feedburner:origLink>http://www.wissel.net/blog/d6plinks/SHWL-96WBMG?Open</feedburner:origLink></item>
<item>
<title>Planning applications (XPages MindMap)</title>
<link>http://feedproxy.google.com/~r/Wisselnet/~3/CGDrCGbGL5w/SHWL-96V6E3</link>
<description><![CDATA[ In a recent XPages workshop in Kuala Lumpur, the class brainstormed on the planning process for an XPages application. This is what we came up with. For every item on the list one could elaborate quite a bit, but putting that on the map would make it rather ... ]]></description>
<dc:creator>Stephan H Wissel</dc:creator>
<comments>http://www.wissel.net/blog/d6plinks/SHWL-96V6E3?Open</comments>
<guid isPermaLink="false">http://www.wissel.net/blog/d6plinks/SHWL-96V6E3?Open</guid>
<content:encoded><![CDATA[ In a recent XPages workshop in Kuala Lumpur, the class brainstormed on the planning process for an XPages application. This is what we came up with. For every item on the list one could elaborate quite a bit, but putting that on the map would make it rather messy.
<br /><a href="/blog/Images/SHWL-96V6DJ/$File/PlanningXPages.jpg" title="Planning XPages Mindmap">
<img src="/blog/Images/SHWL-96V6DJ/$File/PlanningXPages640.jpg" border="0" alt="Planning XPages MindMap" />
</a><br />
Enjoy ]]></content:encoded>
<pubDate>Thu, 18 Apr 2013 03:44:04 +0000</pubDate>
<slash:comments>10</slash:comments>
<category>XPages</category>
<feedburner:origLink>http://www.wissel.net/blog/d6plinks/SHWL-96V6E3?Open</feedburner:origLink></item>
<item>
<title>Is SharePoint a Failed Vision for Collaboration?</title>
<link>http://feedproxy.google.com/~r/Wisselnet/~3/Gk3CCqRdu4A/SHWL-96RB76</link>
<description><![CDATA[ Rich Blank (of Jive software) makes a case on CMSWire to consider SharePoint a failure for collaboration. Looking closely it isn't SharePoint to fault.
SharePoint with its place concept and flat views is a 1:1 conceptual copy of Lotus Notes implemented with a ... ]]></description>
<dc:creator>Stephan H Wissel</dc:creator>
<comments>http://www.wissel.net/blog/d6plinks/SHWL-96RB76?Open</comments>
<guid isPermaLink="false">http://www.wissel.net/blog/d6plinks/SHWL-96RB76?Open</guid>
<content:encoded><![CDATA[ <a href="http://www.cmswire.com/author/rich-blank/">Rich Blank</a> (of Jive software) makes a case on <a href="http://www.cmswire.com/">CMSWire</a> to consider <a href="http://www.cmswire.com/cms/social-business/is-sharepoint-a-failed-vision-for-collaboration-020271.php">SharePoint a failure for collaboration</a>. Looking closely it isn't SharePoint to fault.<br />
SharePoint with its place concept and flat views is a 1:1 conceptual copy of Lotus Notes implemented with a (then) current Microsoft technology stack. Thus it does have the potential for successful collaboration, as the (then) success of Lotus Notes clearly showed.<br />
With the <span style="font-weight: bold; color : red">right effort of adoption</span> any collaborative technology can be successful, be it shared folders (like Dropbox), Lotus Notes, SharePoint, LinkedIn, Jammer or Connections. It is an too common pattern: <b>failure of collaboration gets attributed to the platform, to avoid the necessity to wake up to the fact that the core reason of failure is lack of skills, vision, execution and adoption</b>.<br />
Of course, and I'm certainly biased here, a more people than place/document centric approach makes adoption and collaboration more efficient, effective and pleasant (read: usable), so SharePoint would need to fuse with Yammer and Skype to get there. This still doesn't negate the need to <b>drive adoption</b>.<br />
The collaboration space has still way to go. With all the tools around we celebrate information scatter for the sake of "social collaboration". A key success factor for eMail was "<i>everything in one place (the inbox) at my disposal</i>". The modern collaborative tools (I'm not fond of the term social, since in my part of the world it still has a <a href="http://en.wikipedia.org/wiki/Social_enterprise">different meaning</a>) are wanting in place and control. Activity streams (as the transport protocol) seem most promising, since they are open, don't reinvent the wheels (after all they are HTTP and ATOM) and can be contributed/digested in any programming language.<br />
Nevertheless the UIs offered are to consumption and not enough action oriented. Embedded experiences are a step to remedy that, but I still can't act on the stream, only on some of the information that flows by. So there's way to go to make this collaboration effective, efficient and pleasant. Be it Jammer, SharePoint, IBM Notes or IBM Connections (or any of the nice players). ]]></content:encoded>
<pubDate>Sun, 14 Apr 2013 07:48:57 +0000</pubDate>
<slash:comments>2</slash:comments>
<category>Software</category>
<feedburner:origLink>http://www.wissel.net/blog/d6plinks/SHWL-96RB76?Open</feedburner:origLink></item>
</channel>
</rss>
