<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-674869203791470873</id><updated>2012-02-16T15:05:37.891-08:00</updated><category term='Flash'/><category term='Vortalities'/><category term='jQuery'/><category term='Laurent Schoenaers'/><category term='Christmas'/><category term='Outlook 2010'/><category term='webdesign'/><category term='add-in'/><category term='SharePoint 2010'/><category term='template'/><category term='training'/><category term='BizNext'/><category term='CSS 3'/><category term='HTML 5'/><title type='text'>Laurent Schoenaers</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://laurentschoenaers.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/674869203791470873/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://laurentschoenaers.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Laurent Schoenaers</name><uri>http://www.blogger.com/profile/11668829412922327117</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_fBSVhwz5LUs/TNLQ6mMgQpI/AAAAAAAAAYI/YtjJKxWpEC0/S220/165e363.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>7</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-674869203791470873.post-3822878919427288348</id><published>2011-07-07T06:12:00.000-07:00</published><updated>2011-07-07T06:27:25.143-07:00</updated><title type='text'>SharePoint 2010 YouTube &amp; Google Maps Integration</title><content type='html'>It's been a while since my previous post. And in fact, this is just an extension to my previous post.&lt;br /&gt;&lt;br /&gt;In my previous post I learned you how to integrate YouTube in SharePoint 2010 Blogs. Now I will teach you how you can use that script, though a bit tweaked, for YouTube and Google Maps integration anywhere on your site (ie. in Publishing Pages).&lt;br /&gt;&lt;br /&gt;Go to SharePoint Designer 2010 and open your masterpage. Scroll completely to the bottom and add following pieces of Javascript below the -/body- tag.&lt;br /&gt;&lt;br /&gt;&lt;pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"&gt;&lt;code&gt;&lt;br /&gt;try{&lt;br /&gt;  //replace [youtube]url[/youtube] tags with corresponding HTML object&lt;br /&gt;     if (document.getElementById("page_content").innerHTML.indexOf("[youtube]") &gt; -1) {&lt;br /&gt;         //find all [youtube][/youtube] tags&lt;br /&gt;         var arr = document.getElementById("page_content").innerHTML.split("[youtube]");&lt;br /&gt;         var tempSrc = document.getElementById("page_content").innerHTML;&lt;br /&gt; &lt;br /&gt;         for (j = 0; j &lt; arr.length; j++) {&lt;br /&gt;             //get the url between the [youtube][/youtube] tags&lt;br /&gt;             urltemp = arr[j].substring(0, arr[j].indexOf("[/youtube]"));&lt;br /&gt;             if (urltemp == "") continue;&lt;br /&gt;             &lt;br /&gt;             //format the URL to the correct format to use with the object-element&lt;br /&gt;             url = urltemp.replace(/&lt;.*?&gt;/g, '').replace("/watch?v=", "/embed/");&lt;br /&gt;              &lt;br /&gt;             //replace the [youtube][/youtube] tags with the corresponding object-element&lt;br /&gt;             tempSrc = tempSrc.replace("[youtube]" + urltemp + "[/youtube]", "&amp;lt;iframe width='480' height='390' src='"+ url +"' frameborder='0' allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;");&lt;br /&gt;         }&lt;br /&gt;                 &lt;br /&gt;         document.getElementById("page_content").innerHTML = tempSrc;&lt;br /&gt;     }&lt;br /&gt;     &lt;br /&gt;      //replace [googlemaps]url[/googlemaps] tags with corresponding HTML object&lt;br /&gt;     if (document.getElementById("page_content").innerHTML.indexOf("[googlemaps]") &gt; -1) {&lt;br /&gt;         //find all [googlemaps][/googlemaps] tags&lt;br /&gt;         var arr = document.getElementById("page_content").innerHTML.split("[googlemaps]");&lt;br /&gt;         var tempSrc = document.getElementById("page_content").innerHTML;&lt;br /&gt; &lt;br /&gt;         for (j = 0; j &lt; arr.length; j++) {&lt;br /&gt;             //get the url between the [googlemaps][/googlemaps] tags&lt;br /&gt;             urltemp = arr[j].substring(0, arr[j].indexOf("[/googlemaps]"));&lt;br /&gt;             if (urltemp == "") continue;&lt;br /&gt; &lt;br /&gt;    url = urltemp.replace(/&lt;.*?&gt;/g, '');&lt;br /&gt; &lt;br /&gt;             //replace the [googlemaps][/googlemaps] tags with the corresponding object-element&lt;br /&gt;             tempSrc = tempSrc.replace("[googlemaps]" + urltemp + "[/googlemaps]", "&amp;lt;iframe width='480' height='375' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='" + url + "&amp;output=embed'&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;small&amp;gt;&amp;lt;a href='" + url + "' style='color:#0000FF;text-align:left' target='_blank'&amp;gt;Grotere kaart weergeven&amp;lt;/a&amp;gt;&amp;lt;/small&amp;gt;");&lt;br /&gt;         }&lt;br /&gt;                 &lt;br /&gt;         document.getElementById("page_content").innerHTML = tempSrc;&lt;br /&gt;     }&lt;br /&gt;}&lt;br /&gt;catch(err){}&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;What I basically do is look up the tags in a div called "page_content", which contains all of the page content, and replace the corresponding tags.&lt;br /&gt;&lt;br /&gt;For YouTube you just copy paste the url between [youtube]http://www.youtube.com/watch?v=j3U7TAqbSds[/youtube] tags.&lt;br /&gt;&lt;br /&gt;&lt;img style="cursor:pointer; cursor:hand;width: 320px; height: 30px;" src="http://3.bp.blogspot.com/-CeRG8bb8bis/TV0B80Hg3xI/AAAAAAAAAZk/6NAoVZ-To90/s320/js_sp2010_yt_4.jpg" border="0" alt="" /&gt;&lt;br /&gt;&lt;br /&gt;For Google Maps you use the url you find under the link. [googlemaps]http://maps.google.be/maps?q=gent&amp;hl=nl&amp;sll=50.503887,4.469936&amp;sspn=4.772562,13.392334&amp;t=h&amp;z=12[/googlemaps]&lt;br /&gt;&lt;br /&gt;&lt;img style="cursor:pointer; cursor:hand;width: 320px; height: 150px;" src="http://2.bp.blogspot.com/-41ZSXutfCvA/ThWyXUQtoFI/AAAAAAAAAZ0/oKxOCuF6i7Y/s320/gm.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5626599423114846290" /&gt;&lt;br /&gt;&lt;br /&gt;I hope you can use this little piece of code in your SharePoint 2010 Blogs as well. I cannot guarantee this will work without any tweaking of the script. But it might push you in the right direction.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Enjoy!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/674869203791470873-3822878919427288348?l=laurentschoenaers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://laurentschoenaers.blogspot.com/feeds/3822878919427288348/comments/default' title='Reacties plaatsen'/><link rel='replies' type='text/html' href='http://laurentschoenaers.blogspot.com/2011/07/sharepoint-2010-youtube-google-maps.html#comment-form' title='0 reacties'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/674869203791470873/posts/default/3822878919427288348'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/674869203791470873/posts/default/3822878919427288348'/><link rel='alternate' type='text/html' href='http://laurentschoenaers.blogspot.com/2011/07/sharepoint-2010-youtube-google-maps.html' title='SharePoint 2010 YouTube &amp; Google Maps Integration'/><author><name>Laurent Schoenaers</name><uri>http://www.blogger.com/profile/11668829412922327117</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_fBSVhwz5LUs/TNLQ6mMgQpI/AAAAAAAAAYI/YtjJKxWpEC0/S220/165e363.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/-CeRG8bb8bis/TV0B80Hg3xI/AAAAAAAAAZk/6NAoVZ-To90/s72-c/js_sp2010_yt_4.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-674869203791470873.post-3825264900253171450</id><published>2011-02-17T02:47:00.000-08:00</published><updated>2011-02-17T05:01:49.695-08:00</updated><title type='text'>SharePoint 2010 Blog and YouTube</title><content type='html'>Hi,&lt;br /&gt;&lt;br /&gt;I've been struggling a while with the ability to show YouTube movies in a SharePoint 2010 blogpost.&lt;br /&gt;&lt;br /&gt;A first glance at the problem seemed pretty easy, let's just copy the object/iframe code from YouTube and copy it in the RTE via the HTML Editor. Guess what? SharePoint just removes the tags. Great!&lt;br /&gt;&lt;br /&gt;Since we already added a webpart to the blog that extends the posts with a FaceBook Like-button, I had the idea of just implementing something that would find a [youtube][/youtube] tag and replace it with its corresponding object. Hence, I couldn't find a way to make this work properly. Since the webpart is loaded on server-side, there wasn't a way to dynamically change the value of the text in the blogpost.&lt;br /&gt;&lt;br /&gt;&lt;img style="cursor:pointer; cursor:hand;width: 320px; height: 105px;" src="http://2.bp.blogspot.com/-fwyXH-OIDRI/TV0AQnFwsPI/AAAAAAAAAZc/ous0_KuW6HE/s320/js_sp2010_yt_3.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5574612199125594354" /&gt;&lt;br /&gt;&lt;br /&gt;Think think think... Ping, JavaScript you genius!&lt;br /&gt;&lt;br /&gt;Implement following piece of Javascript at the bottom of the masterpage, used in the blog, and you'll have exactly what you need. After some trial and error and, ofcourse, browserissues I got to the following script:&lt;br /&gt;&lt;br /&gt;&lt;pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"&gt;&lt;code&gt;&lt;br /&gt;var objDivs = getElementsByPrefix(&amp;quot;PostDateTopBox&amp;quot;, document);&lt;br /&gt;&lt;br /&gt;for (i = 0; i &amp;lt; objDivs.length; i++) {&lt;br /&gt;    //replace [youtube]url[/youtube] tags with corresponding HTML object&lt;br /&gt;    if (objDivs[i].parentNode.parentNode.innerHTML.indexOf(&amp;quot;[youtube]&amp;quot;) &amp;gt; -1) {&lt;br /&gt;        //find all [youtube][/youtube] tags&lt;br /&gt;        var arr = objDivs[i].parentNode.parentNode.innerHTML.split(&amp;quot;[youtube]&amp;quot;);&lt;br /&gt;        var tempSrc = objDivs[i].parentNode.parentNode.parentNode.parentNode.parentNode.innerHTML;&lt;br /&gt;&lt;br /&gt;        for (j = 0; j &amp;lt; arr.length; j++) {&lt;br /&gt;            //get the url between the [youtube][/youtube] tags&lt;br /&gt;            urltemp = arr[j].substring(0, arr[j].indexOf(&amp;quot;[/youtube]&amp;quot;));&lt;br /&gt;            if (urltemp == &amp;quot;&amp;quot;) continue;&lt;br /&gt;            //format the URL to the correct format to use with the object-element&lt;br /&gt;            url = urltemp.replace(&amp;quot;/watch?v=&amp;quot;, &amp;quot;/v/&amp;quot;);&lt;br /&gt;            if (url.indexOf(&amp;quot;&amp;amp;&amp;quot;) &amp;gt; -1) url = url.replace(url.substring(url.indexOf(&amp;quot;&amp;amp;&amp;quot;), url.length), &amp;quot;&amp;quot;);&lt;br /&gt;            url += &amp;quot;?fs=1&amp;amp;amp;hl=nl_NL&amp;amp;amp;rel=0&amp;quot;;&lt;br /&gt;&lt;br /&gt;            //replace the [youtube][/youtube] tags with the corresponding object-element&lt;br /&gt;            tempSrc = tempSrc.replace(&amp;quot;[youtube]&amp;quot; + urltemp + &amp;quot;[/youtube]&amp;quot;, &amp;quot;&amp;lt;object width='480' height='390'&amp;gt;&amp;lt;param name='movie' value='&amp;quot; + url + &amp;quot;'&amp;gt;&amp;lt;/param&amp;gt;&amp;lt;param name='allowFullScreen' value='true'&amp;gt;&amp;lt;/param&amp;gt;&amp;lt;param name='allowscriptaccess' value='always'&amp;gt;&amp;lt;/param&amp;gt;&amp;lt;embed src='&amp;quot; + url + &amp;quot;' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='480' height='390'&amp;gt;&amp;lt;/embed&amp;gt;&amp;lt;/object&amp;gt;&amp;quot;);&lt;br /&gt;        }&lt;br /&gt;                &lt;br /&gt;        //note the 5x .parentNode suddenly, this is for IE. in IE you cannot edit the innerHTML of a non-div element. So I went to search the nearest div-element.&lt;br /&gt;        objDivs[i].parentNode.parentNode.parentNode.parentNode.parentNode.innerHTML = tempSrc;&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"&gt;&lt;code&gt;&lt;br /&gt;function getElementsByPrefix(inPrefix, inRoot) {&lt;br /&gt;    var elem_array = new Array;&lt;br /&gt;&lt;br /&gt;    if (typeof inRoot.firstChild != 'undefined') {&lt;br /&gt;        var elem = inRoot.firstChild;&lt;br /&gt;&lt;br /&gt;        while (elem != null) {&lt;br /&gt;            if (typeof elem.firstChild != 'undefined') {&lt;br /&gt;                elem_array = elem_array.concat(getElementsByPrefix(inPrefix, elem));&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            if (typeof elem.id != 'undefined') {&lt;br /&gt;                var reg = new RegExp('^' + inPrefix + '.*');&lt;br /&gt;                if (elem.id.match(reg)) {&lt;br /&gt;                    elem_array.push(elem);&lt;br /&gt;                }&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            elem = elem.nextSibling;&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    return elem_array;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;This will give the following result.&lt;br /&gt;&lt;br /&gt;The RTE:&lt;br /&gt;&lt;img style="cursor:pointer; cursor:hand;width: 320px; height: 94px;" src="http://1.bp.blogspot.com/-65iG5AsE944/TVz_ZuHoAdI/AAAAAAAAAZM/lJvXON_8Z0A/s320/js_sp2010_yt_1.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5574611256119656914" /&gt;&lt;br /&gt;&lt;br /&gt;Wherever you need it, just provide the tag: &lt;b&gt;[youtube]url_of_movie[/youtube]&lt;/b&gt;.&lt;br /&gt;The url_of_movie is just copied from the browser.&lt;br /&gt;&lt;img style="cursor:pointer; cursor:hand;width: 320px; height: 30px;" src="http://3.bp.blogspot.com/-CeRG8bb8bis/TV0B80Hg3xI/AAAAAAAAAZk/6NAoVZ-To90/s320/js_sp2010_yt_4.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5574614058048478994" /&gt;&lt;br /&gt;&lt;br /&gt;The result in the actual blogpost:&lt;br /&gt;&lt;img style="cursor:pointer; cursor:hand;width: 310px; height: 320px;" src="http://2.bp.blogspot.com/-iB7AurAfAQ4/TVz_oq0ZyvI/AAAAAAAAAZU/aNh2yRyCPGY/s320/js_sp2010_yt_2.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5574611512931764978" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I hope you can use this little piece of code in your SharePoint 2010 Blogs as well. I cannot guarantee this will work without any tweaking of the script. But it might push you in the right direction.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Enjoy!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/674869203791470873-3825264900253171450?l=laurentschoenaers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://laurentschoenaers.blogspot.com/feeds/3825264900253171450/comments/default' title='Reacties plaatsen'/><link rel='replies' type='text/html' href='http://laurentschoenaers.blogspot.com/2011/02/sharepoint-2010-blog-and-youtube.html#comment-form' title='3 reacties'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/674869203791470873/posts/default/3825264900253171450'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/674869203791470873/posts/default/3825264900253171450'/><link rel='alternate' type='text/html' href='http://laurentschoenaers.blogspot.com/2011/02/sharepoint-2010-blog-and-youtube.html' title='SharePoint 2010 Blog and YouTube'/><author><name>Laurent Schoenaers</name><uri>http://www.blogger.com/profile/11668829412922327117</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_fBSVhwz5LUs/TNLQ6mMgQpI/AAAAAAAAAYI/YtjJKxWpEC0/S220/165e363.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-fwyXH-OIDRI/TV0AQnFwsPI/AAAAAAAAAZc/ous0_KuW6HE/s72-c/js_sp2010_yt_3.jpg' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-674869203791470873.post-2864067249796125607</id><published>2011-02-12T07:47:00.000-08:00</published><updated>2011-02-12T07:53:58.931-08:00</updated><title type='text'>Shirokan</title><content type='html'>Phew, &lt;br /&gt;&lt;br /&gt;It really has been a long time since my latest activity on here.&lt;br /&gt;&lt;br /&gt;Well, I admit I do not have that much to say right now. I'm busy, as usual.&lt;br /&gt;&lt;br /&gt;But, I do published a new website today: &lt;a href="http://www.shirokan.be" target="_blank"&gt;http://www.shirokan.be&lt;/a&gt;&lt;br /&gt;It is for the local Karate club, in which I'm a member ofcourse.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.shirokan.be" target="_blank"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 400px; height: 271px;" src="http://www.laurentschoenaers.be/images/gallery/shirokan.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I built it completely with jQuery. To say the least, it was my first project I worked out with only jQuery! I must say, I fell in love with it. The ease of doing things, it just makes you melt.&lt;br /&gt;&lt;br /&gt;To learn more about jQuery, I recommend you visiting &lt;a href="http://jquery.com/" target="_blank"&gt;http://jquery.com/&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Have fun!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/674869203791470873-2864067249796125607?l=laurentschoenaers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://laurentschoenaers.blogspot.com/feeds/2864067249796125607/comments/default' title='Reacties plaatsen'/><link rel='replies' type='text/html' href='http://laurentschoenaers.blogspot.com/2011/02/shirokan.html#comment-form' title='0 reacties'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/674869203791470873/posts/default/2864067249796125607'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/674869203791470873/posts/default/2864067249796125607'/><link rel='alternate' type='text/html' href='http://laurentschoenaers.blogspot.com/2011/02/shirokan.html' title='Shirokan'/><author><name>Laurent Schoenaers</name><uri>http://www.blogger.com/profile/11668829412922327117</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_fBSVhwz5LUs/TNLQ6mMgQpI/AAAAAAAAAYI/YtjJKxWpEC0/S220/165e363.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-674869203791470873.post-1704963278769997773</id><published>2010-12-03T04:51:00.000-08:00</published><updated>2010-12-03T04:57:21.225-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Outlook 2010'/><category scheme='http://www.blogger.com/atom/ns#' term='add-in'/><category scheme='http://www.blogger.com/atom/ns#' term='Christmas'/><title type='text'>Outlook 2010 - Christmas countdown</title><content type='html'>To all Outlook-users, there is a free add-in for Outlook available which counts down to Christmas time. You can download it for free &lt;a href="http://www.add-in-express.com/creating-addins-blog/2010/12/01/free-outlook-christmas-day-countdown-add-in/"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br/&gt;&lt;br /&gt;Ofcourse I tried it out. Looks nice, isn't it?&lt;br /&gt;&lt;br/&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_fBSVhwz5LUs/TPjoPSPe5MI/AAAAAAAAAYo/Ei1MLOitI2E/s1600/SNAGHTMLbcba8b_thumb.png"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 320px; height: 177px;" src="http://2.bp.blogspot.com/_fBSVhwz5LUs/TPjoPSPe5MI/AAAAAAAAAYo/Ei1MLOitI2E/s320/SNAGHTMLbcba8b_thumb.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5546438290399225026" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br /&gt;There are some little features in it as well:&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Play some Christmas music!&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Send an e-mail to Santa!&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Plan your holiday events!&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Organize your shopping list!&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Create your Christmas card mailing list!&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;Well, just &lt;a href="http://www.add-in-express.com/creating-addins-blog/2010/12/01/free-outlook-christmas-day-countdown-add-in/"&gt;download&lt;/a&gt; it and have some fun. :)&lt;br /&gt;&lt;br/&gt;&lt;br /&gt;Have a good day!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/674869203791470873-1704963278769997773?l=laurentschoenaers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://laurentschoenaers.blogspot.com/feeds/1704963278769997773/comments/default' title='Reacties plaatsen'/><link rel='replies' type='text/html' href='http://laurentschoenaers.blogspot.com/2010/12/outlook-2010-christmas-countdown.html#comment-form' title='0 reacties'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/674869203791470873/posts/default/1704963278769997773'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/674869203791470873/posts/default/1704963278769997773'/><link rel='alternate' type='text/html' href='http://laurentschoenaers.blogspot.com/2010/12/outlook-2010-christmas-countdown.html' title='Outlook 2010 - Christmas countdown'/><author><name>Laurent Schoenaers</name><uri>http://www.blogger.com/profile/11668829412922327117</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_fBSVhwz5LUs/TNLQ6mMgQpI/AAAAAAAAAYI/YtjJKxWpEC0/S220/165e363.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_fBSVhwz5LUs/TPjoPSPe5MI/AAAAAAAAAYo/Ei1MLOitI2E/s72-c/SNAGHTMLbcba8b_thumb.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-674869203791470873.post-6251283929869164424</id><published>2010-11-04T08:28:00.001-07:00</published><updated>2010-11-04T08:41:08.656-07:00</updated><title type='text'>SPTechCon @ Boston</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.idevnews.com/views/images/uploads/general/sptechcon_logo_jpg-725x0.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 239px; height: 68px;" src="http://www.idevnews.com/views/images/uploads/general/sptechcon_logo_jpg-725x0.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I attented SPTechCon at Boston previous week. SPTechCon is an event about SharePoint 2010. Time to write a blogpost about it.&lt;br /&gt;&lt;br /&gt;First of all I'd like to thank the organisators of this event. It was organised at a very nice location, Hyatt Regency Hotel in Cambridge. To say the least, I enjoyed my first stay in Boston alot.&lt;br /&gt;&lt;br /&gt;Second, this event has a few of the best speakers around SharePoint on the globe. I learned nice new stuff. Ofcourse such an event also covers topics which one already know, but then you just change to another room and you're set for some new intresting content.&lt;br /&gt;&lt;br /&gt;Content varied from SharePoint Administration to configuring and even programming using the latest API's and functionalities available in SharePoint 2010.&lt;br /&gt;&lt;br /&gt;The speakers I enjoyed the most were definitely &lt;a href="http://www.heathersolomon.com/"&gt;Heather Solomon&lt;/a&gt; and Dustin Miller. I already attended a class of these 2 geniuses about SharePoint branding in May.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;For more information, visit: &lt;a href="http://www.sptechcon.com/"&gt;http://www.sptechcon.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The next SPTechCon is scheduled feb. 7-9,2011 at San Francisco, I hope I can attend that one too. You should definitely consider it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/674869203791470873-6251283929869164424?l=laurentschoenaers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://laurentschoenaers.blogspot.com/feeds/6251283929869164424/comments/default' title='Reacties plaatsen'/><link rel='replies' type='text/html' href='http://laurentschoenaers.blogspot.com/2010/11/sptechcon-boston.html#comment-form' title='0 reacties'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/674869203791470873/posts/default/6251283929869164424'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/674869203791470873/posts/default/6251283929869164424'/><link rel='alternate' type='text/html' href='http://laurentschoenaers.blogspot.com/2010/11/sptechcon-boston.html' title='SPTechCon @ Boston'/><author><name>Laurent Schoenaers</name><uri>http://www.blogger.com/profile/11668829412922327117</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_fBSVhwz5LUs/TNLQ6mMgQpI/AAAAAAAAAYI/YtjJKxWpEC0/S220/165e363.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-674869203791470873.post-8262596239586689809</id><published>2010-10-04T11:49:00.000-07:00</published><updated>2010-10-04T12:24:21.707-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint 2010'/><category scheme='http://www.blogger.com/atom/ns#' term='training'/><category scheme='http://www.blogger.com/atom/ns#' term='template'/><category scheme='http://www.blogger.com/atom/ns#' term='webdesign'/><category scheme='http://www.blogger.com/atom/ns#' term='Vortalities'/><title type='text'>SharePoint 2010 in plain English</title><content type='html'>Since I'm working at &lt;a href="http://www.vortalities.be"&gt;Vortalities&lt;/a&gt;, I've been really into &lt;a href="http://sharepoint.microsoft.com"&gt;SharePoint 2010&lt;/a&gt;. Working all day with it, giving basic and advanced trainings on the topic, ... It just keeps me going. Combining the power of SharePoint 2010 with some very neat website template... It keeps a man dreaming.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;But then again, when you go to a company to teach them about SharePoint in general, they have certain expectations. Going to the pub later that night and trying to explain the story of SharePoint to a couple of drunk friends, seems harder than anything.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I've found the perfect solution to that. SharePoint 2010 explained in 3 minutes... Make sure to check it out:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;object width="400" height="241"&gt;&lt;param name="movie" value="http://www.youtube.com/v/s12Jb5Z2xaE?fs=1&amp;amp;hl=nl_NL"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/s12Jb5Z2xaE?fs=1&amp;amp;hl=nl_NL" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="400" height="241"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I've been putting this in my PowerPoint slide deck since a couple of days, and I must say it has some good reactions.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Thanks to the authors of this movie!&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/674869203791470873-8262596239586689809?l=laurentschoenaers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://laurentschoenaers.blogspot.com/feeds/8262596239586689809/comments/default' title='Reacties plaatsen'/><link rel='replies' type='text/html' href='http://laurentschoenaers.blogspot.com/2010/10/sharepoint-2010.html#comment-form' title='0 reacties'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/674869203791470873/posts/default/8262596239586689809'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/674869203791470873/posts/default/8262596239586689809'/><link rel='alternate' type='text/html' href='http://laurentschoenaers.blogspot.com/2010/10/sharepoint-2010.html' title='SharePoint 2010 in plain English'/><author><name>Laurent Schoenaers</name><uri>http://www.blogger.com/profile/11668829412922327117</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_fBSVhwz5LUs/TNLQ6mMgQpI/AAAAAAAAAYI/YtjJKxWpEC0/S220/165e363.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-674869203791470873.post-3124849375685623040</id><published>2010-10-04T11:39:00.000-07:00</published><updated>2010-10-04T12:00:32.311-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Laurent Schoenaers'/><category scheme='http://www.blogger.com/atom/ns#' term='CSS 3'/><category scheme='http://www.blogger.com/atom/ns#' term='BizNext'/><category scheme='http://www.blogger.com/atom/ns#' term='Flash'/><category scheme='http://www.blogger.com/atom/ns#' term='webdesign'/><category scheme='http://www.blogger.com/atom/ns#' term='jQuery'/><category scheme='http://www.blogger.com/atom/ns#' term='Vortalities'/><category scheme='http://www.blogger.com/atom/ns#' term='HTML 5'/><title type='text'>Webdesign</title><content type='html'>Having it running in the background, I recently decided to give webdesign a more important place in my life again. Recently, my fire has been lit again. Though, I cannot really give a reason for that. I guess just waking up with a nice idea makes a day.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The latest 3 projects I've been working at are:&lt;/div&gt;&lt;div&gt;Vortalities: &lt;a href="http://www.vortalities.be"&gt;http://www.vortalities.be&lt;/a&gt;&lt;/div&gt;&lt;div&gt;Personal site: &lt;a href="http://www.laurentschoenaers.be"&gt;http://www.laurentschoenaers.be&lt;/a&gt;&lt;/div&gt;&lt;div&gt;BizNext: &lt;a href="http://www.biznext.be"&gt;http://www.biznext.be&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The reason for this blog is also to keep track of my evolutions in webdesign. Lately,  I've been really fascinated by HTML 5 and CSS 3. Combining this with a good portion of jQuery might just give Flash a different life, a meaningless life. Though, I'm still using Flash on my &lt;a href="http://www.laurentschoenaers.be"&gt;Personal website&lt;/a&gt;. But I'll be changing that soon.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I'll keep you posted about future projects.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/674869203791470873-3124849375685623040?l=laurentschoenaers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://laurentschoenaers.blogspot.com/feeds/3124849375685623040/comments/default' title='Reacties plaatsen'/><link rel='replies' type='text/html' href='http://laurentschoenaers.blogspot.com/2010/10/webdesign.html#comment-form' title='0 reacties'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/674869203791470873/posts/default/3124849375685623040'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/674869203791470873/posts/default/3124849375685623040'/><link rel='alternate' type='text/html' href='http://laurentschoenaers.blogspot.com/2010/10/webdesign.html' title='Webdesign'/><author><name>Laurent Schoenaers</name><uri>http://www.blogger.com/profile/11668829412922327117</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_fBSVhwz5LUs/TNLQ6mMgQpI/AAAAAAAAAYI/YtjJKxWpEC0/S220/165e363.jpg'/></author><thr:total>0</thr:total></entry></feed>
