<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Extempore</title>
	<atom:link href="http://michaelhendrickx.com/feed" rel="self" type="application/rss+xml" />
	<link>http://michaelhendrickx.com</link>
	<description>random ramblings of the disturbed mind</description>
	<lastBuildDate>Tue, 20 Jul 2010 05:39:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Drum n bass song, or &#8220;going wild with Reason&#8221;</title>
		<link>http://michaelhendrickx.com/201007_drum-n-bass-song-or-going-wild-with-reason.html</link>
		<comments>http://michaelhendrickx.com/201007_drum-n-bass-song-or-going-wild-with-reason.html#comments</comments>
		<pubDate>Tue, 20 Jul 2010 05:39:46 +0000</pubDate>
		<dc:creator>Michael Hendrickx</dc:creator>
				<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://michaelhendrickx.com/?p=321</guid>
		<description><![CDATA[Ages ago, I installed Reason and have been playing a bit with it.  Few days ago was actually the first time I created something relatively complete.  It contains a sample of Public Enemy&#8217;s &#8220;By The Time I Get To Arizona&#8221;.
You can download it here
Feel free to leave any comments for it.
]]></description>
			<content:encoded><![CDATA[<p><img src="http://michaelhendrickx.com/wp-content/uploads/2010/07/tt.jpg" alt="" title="tt" width="110" height="110" align="right" />Ages ago, I installed <a href="http://www.propellerheads.se/reason/">Reason</a> and have been playing a bit with it.  Few days ago was actually the first time I created something relatively complete.  It contains a sample of Public Enemy&#8217;s &#8220;By The Time I Get To Arizona&#8221;.</p>
<p>You can download it <a href='http://michaelhendrickx.com/wp-content/uploads/2010/07/MH-20thousand.mp3'>here</a></p>
<p>Feel free to leave any comments for it.</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelhendrickx.com/201007_drum-n-bass-song-or-going-wild-with-reason.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://michaelhendrickx.com/wp-content/uploads/2010/07/MH-20thousand.mp3" length="4331826" type="audio/mpeg" />
		</item>
		<item>
		<title>How to shrink Microsoft SQL log files</title>
		<link>http://michaelhendrickx.com/201007_how-to-shrink-microsoft-sql-log-files.html</link>
		<comments>http://michaelhendrickx.com/201007_how-to-shrink-microsoft-sql-log-files.html#comments</comments>
		<pubDate>Mon, 12 Jul 2010 04:55:58 +0000</pubDate>
		<dc:creator>Michael Hendrickx</dc:creator>
				<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[db logs]]></category>
		<category><![CDATA[mssql]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://michaelhendrickx.com/?p=302</guid>
		<description><![CDATA[
When having Microsoft SQL databases, its log files can grow quite a bit, potentially slow down the database server and eat up disk space.  
To shrink a database, one can run the following line: 
EXEC D_ShrinkDBLogs 0,100,1000,'with truncate_only','DB_NAME'
(change DB_NAME with the database&#8217;s name)
To shrink all databases, one can use &#8220;sp_MSforeachdb&#8221; which is an undocumented [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://michaelhendrickx.com/wp-content/uploads/2010/07/nsp1.jpg" alt="" title="nsp" width="242" height="201" align="right" /></p>
<p>When having Microsoft SQL databases, its log files can grow quite a bit, potentially slow down the database server and eat up disk space.  </p>
<p>To shrink a database, one can run the following line: </p>
<p><strong><code>EXEC D_ShrinkDBLogs 0,100,1000,'with truncate_only','DB_NAME'</code></strong><br />
(change DB_NAME with the database&#8217;s name)</p>
<p>To shrink all databases, one can use &#8220;sp_MSforeachdb&#8221; which is an undocumented sql stored procedure:</p>
<p><strong><code>EXEC sp_MSForEachDB 'D_ShrinkDBLogs 0,100,1000,''with truncate_only'',''?'''</code></strong></p>
<p>To run this, the following stored procedure need to be installed. It can just be copy pasted from the code below (or download from <a href='http://michaelhendrickx.com/wp-content/uploads/2010/07/d_shrinkdblogs.txt'>this</a> link):<br />
<span id="more-302"></span></p>
<pre>
CREATE PROC [dbo].[D_ShrinkDBLogs]
  @target_percent TINYINT = 0, @target_size_MB INT,  @max_iterations INT, @trunc NVARCHAR(1000),
  @DB VARCHAR(30)
AS
  SET nocount ON
  SET @trunc = 'with truncate_only'
  --SET @trunc = ''
  DECLARE
      @last_row INT, @log_size DECIMAL(15,2), @unused_at_start DECIMAL(15,2),
      @unused DECIMAL(15,2), @shrinkable DECIMAL(15,2), @iteration INT, @file_max INT,
      @file INT, @fileid VARCHAR(5)

  SELECT @iteration = 0
  PRINT @DB
  CREATE TABLE #loginfo
     (id INT IDENTITY, FileId INT, FileSize NUMERIC(22,0), StartOffset NUMERIC(22,0),
       FSeqNo INT, Status INT, Parity SMALLINT, CreateLSN NUMERIC(30) )

  CREATE TABLE #logfiles
     (id INT IDENTITY(1,1), fileid VARCHAR(5) NOT NULL )
  INSERT #logfiles
    ( fileid )
     SELECT CONVERT(VARCHAR,fileid) FROM sysfiles WHERE status = 1048642
     SELECT @file_max = @@rowcount

  IF OBJECT_ID('shrinktab') IS NULL
    EXEC ('create table shrinktab ( x nchar(3000) not null )')
  INSERT #loginfo
     (
      FileId,FileSize,StartOffset,FSeqNo,Status,
      Parity,CreateLSN )
      EXEC ('dbcc loginfo (' + @DB + ')'
     )
  SELECT @last_row = @@rowcount
  PRINT @last_row
  SELECT
      @log_size = SUM(FileSize) / 1048576.00,
      @unused = SUM(CASE WHEN Status = 0
      THEN FileSize ELSE 0 END) / 1048576.00,

  @shrinkable = SUM(CASE WHEN id < @last_row - 1 AND Status = 0
          THEN FileSize
          ELSE 0
          END) / 1048576.00
          FROM #loginfo

  SELECT @unused_at_start = @unused -- save for later
  SELECT 'iteration' = @iteration, 'log size, MB' = @log_size,
  'unused log, MB' = @unused, 'shrinkable log, MB' = @shrinkable,
   'shrinkable %' = CONVERT(DECIMAL(6,2), @shrinkable * 100 / @log_size)
  WHILE @shrinkable * 100 / @log_size > @target_percent
    AND @shrinkable > @target_size_MB
    AND @iteration < @max_iterations
    BEGIN
      SELECT @iteration = @iteration + 1 -- this is just a precaution
      EXEC ('insert shrinktab select name from sysobjects delete shrinktab')
      SELECT @file = 0
      WHILE @file < @file_max
        BEGIN
          SELECT @file = @file + 1
          SELECT @fileid = fileid FROM #logfiles WHERE id = @file
          EXEC
          ('use ' + @DB + '; dbcc shrinkfile( ' + @fileid + ' )')
        END
      EXEC
       ( 'backup log ' + @db + ' ' + @trunc   )

      TRUNCATE TABLE #loginfo
      INSERT #loginfo
       ( FileId,FileSize,StartOffset, FSeqNo,Status,Parity,CreateLSN )
       EXEC ( 'dbcc loginfo' )
      SELECT @last_row = @@rowcount
      SELECT @log_size = SUM(FileSize) / 1048576.00,
       @unused = SUM(CASE WHEN Status = 0 THEN FileSize
       ELSE 0
       END) / 1048576.00,
       @shrinkable = SUM(CASE WHEN id < @last_row - 1
       AND Status = 0 THEN FileSize
       ELSE 0
       END)
       / 1048576.00
       FROM #loginfo

       SELECT 'iteration' = @iteration, 'log size, MB' = @log_size,
       'unused log, MB' = @unused, 'shrinkable log, MB' = @shrinkable,
       'shrinkable %' = CONVERT(DECIMAL(6,2),@shrinkable
       * 100 / @log_size)
    END
 SELECT CONVERT(VARCHAR,@iteration) + ' iterations. Log shrunk from ' +
 CONVERT(VARCHAR,@unused_at_start) + ' MB to ' + CONVERT(VARCHAR,@unused) + ' MB'
 EXEC ( 'drop table shrinktab' )
</pre>
<p>Note that this procedure wasn't written by me, but ramassed together by a good friend of mine.</p>
<p>Thank you,<br />
Michael</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelhendrickx.com/201007_how-to-shrink-microsoft-sql-log-files.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debian won&#8217;t boot on BL465 server</title>
		<link>http://michaelhendrickx.com/201007_debian-wont-boot-on-bl465-server.html</link>
		<comments>http://michaelhendrickx.com/201007_debian-wont-boot-on-bl465-server.html#comments</comments>
		<pubDate>Mon, 05 Jul 2010 11:15:54 +0000</pubDate>
		<dc:creator>Michael Hendrickx</dc:creator>
				<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://michaelhendrickx.com/?p=299</guid>
		<description><![CDATA[When installing Debian on a HP BL465 server, we sometimes run into the problems that after installing, GRUB won&#8217;t boot up anymore.
First off, it&#8217;s not a Debian specific problem, we had this problem with other Linux distributions also, but decided to standardize on Debian across the organization.
Installing to the MBR fails, and you have to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://michaelhendrickx.com/wp-content/uploads/2010/07/grub.jpg" style="padding:2px" alt="" title="grub" width="96" height="128" align="right" />When installing Debian on a HP BL465 server, we sometimes run into the problems that after installing, </strong>GRUB won&#8217;t boot up anymore</strong>.</p>
<p>First off, it&#8217;s not a Debian specific problem, we had this problem with other Linux distributions also, but decided to standardize on Debian across the <a href="http://www.nakheel.com">organization</a>.</p>
<p>Installing to the MBR fails, and you have to install grub on <strong>/dev/cciss/c0d0</strong>, although upon rebooting after the installation, Grub throws out an error that it cannot boot off (hd1,0).</p>
<p>When you encounter this, you need to <strong>e</strong>dit the configuration (by pressing <strong>e</strong> in the initial grub screen), and <strong>change the (hd1,0) to (hd0,0)</strong>.</p>
<p>This did the trick for us,</p>
<p>Thanks,<br />
Michael</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelhendrickx.com/201007_debian-wont-boot-on-bl465-server.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reverse proxy for sharepoint on Linux using HAProxy</title>
		<link>http://michaelhendrickx.com/201006_reverse-proxy-for-sharepoint-on-linux-using-haproxy.html</link>
		<comments>http://michaelhendrickx.com/201006_reverse-proxy-for-sharepoint-on-linux-using-haproxy.html#comments</comments>
		<pubDate>Wed, 16 Jun 2010 04:02:42 +0000</pubDate>
		<dc:creator>Michael Hendrickx</dc:creator>
				<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[haproxy]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[reverse proxy]]></category>

		<guid isPermaLink="false">http://michaelhendrickx.com/?p=289</guid>
		<description><![CDATA[At Nakheel, we needed to load balance a new sharepoint instance.  Our new sharepoint is single sign on, and was running on 2 web servers which needed to be load balanced.  We played around with Apache for a while, and it&#8217;s awesome proxy balancer, but it gave us the problem that it was [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://michaelhendrickx.com/wp-content/uploads/2010/06/fo.jpg"><img src="http://michaelhendrickx.com/wp-content/uploads/2010/06/fo.jpg" alt="" title="fo" width="116" height="107" align="right" /></a>At Nakheel, we needed to load balance a new sharepoint instance.  Our new sharepoint is single sign on, and was running on 2 web servers which needed to be load balanced.  We played around with Apache for a while, and it&#8217;s awesome <a href="http://httpd.apache.org/docs/2.1/mod/mod_proxy_balancer.html">proxy balancer</a>, but it gave us the problem that it was always <strong>asking for a username and password.</strong></p>
<p>Apache was used, since I have a reasonable amount of experience with it load balancing servers such as Webrick, etc.  After a few frustrating hours of messing with <a href="http://www.innovation.ch/personal/ronald/ntlm.html">NTLM</a>, <a href="http://certifiedgeek.blogsome.com/">Christian</a> proposed <a href="http://certifiedgeek.blogsome.com/2010/06/15/open-source-load-balancer-software-2010/">a few alternatives</a> for this.  </p>
<p>Having this in mind, we decided to go for <a href="http://haproxy.1wt.eu/">HAProxy</a>, to provide load balancing and a reverse proxy for our sharepoint instance.  The good this is that it is a very simple tool, it accept HTTP conenctions, and forward them.  </p>
<p>Below is our simplified <strong>/etc/haproxy/haproxy.cfg</strong> file</p>
<pre>
global
        maxconn 4096
        user haproxy
        group haproxy
        daemon
        # debug

defaults
        mode    http
        option  forwardfor
        log     127.0.0.1 local0 notice
        maxconn 2000
        contimeout      5000
        clitimeout      50000
        srvtimeout      50000

backend sharepoint
        balance roundrobin
        option redispatch
        cookie SERVERID insert nocache
        server sp1      172.30.16.11:80  cookie spsrv01 weight 30 check
        server sp2      172.30.16.12:80  cookie spsrv02 weight 30 check

frontend httpid
        bind *:80
        acl hosts_sharepoint hdr_end(host) -i intranet.domain.com
        acl hosts_sharepoint hdr_end(host) -i intranet.domain.com:80
        use_backend sharepoint if hosts_sharepoint
        default_backend sharepoint
</pre>
<p>The configuration is very straightforward, and it got rid of our continuous username/password boxes, especially under firefox.</p>
<p>Hope this helps,<br />
Michael</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelhendrickx.com/201006_reverse-proxy-for-sharepoint-on-linux-using-haproxy.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blackberry 6 sneak peak?</title>
		<link>http://michaelhendrickx.com/201005_blackberry-6-sneak-peak.html</link>
		<comments>http://michaelhendrickx.com/201005_blackberry-6-sneak-peak.html#comments</comments>
		<pubDate>Sun, 16 May 2010 17:01:27 +0000</pubDate>
		<dc:creator>Michael Hendrickx</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[bbos]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[blackberry 6]]></category>
		<category><![CDATA[os]]></category>

		<guid isPermaLink="false">http://michaelhendrickx.com/?p=286</guid>
		<description><![CDATA[
Eh? I mean, seriously.
]]></description>
			<content:encoded><![CDATA[<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/DlO8KMv7Bx4&#038;hl=en_GB&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/DlO8KMv7Bx4&#038;hl=en_GB&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></p>
<p>Eh? I mean, seriously.</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelhendrickx.com/201005_blackberry-6-sneak-peak.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Changing NSClient++ configurations in bulk</title>
		<link>http://michaelhendrickx.com/201005_changing-nsclient-configurations-in-bulk.html</link>
		<comments>http://michaelhendrickx.com/201005_changing-nsclient-configurations-in-bulk.html#comments</comments>
		<pubDate>Tue, 11 May 2010 10:20:55 +0000</pubDate>
		<dc:creator>Michael Hendrickx</dc:creator>
				<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[batch file]]></category>
		<category><![CDATA[ghetto]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[nagios]]></category>
		<category><![CDATA[nsclient]]></category>

		<guid isPermaLink="false">http://michaelhendrickx.com/?p=277</guid>
		<description><![CDATA[At work, we started using Nagios to monitor the hosts and their services for any issues, so we can, proactively, take actions when we see trouble coming (hard disk that fills up rapidly, restarting services, etc).
Recently we change the Nagios host to another IP address and found ourselves having to change a few dozen NSClient.ini [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://michaelhendrickx.com/wp-content/uploads/2010/05/nagios.jpg" alt="" title="nagios" width="255" height="172" align="right" />At <a href="http://www.nakheel.com">work</a>, we started using Nagios to monitor the hosts and their services for any issues, so we can, proactively, take actions when we see trouble coming (hard disk that fills up rapidly, restarting services, etc).</p>
<p>Recently we change the Nagios host to another IP address and found ourselves having to change a few dozen NSClient.ini files on the server.  Even though we use DNS names as monitoring host (only nsclient access on port 12489/tcp is allowed from a certain host), NSClient by default caches the IP address (Using <strong>cache_allowed_hosts</strong>, which is set to &#8220;1&#8243; by default) so we were bound to change quite some files.</p>
<p>To do this, we have to do the following:<span id="more-277"></span></p>
<ul>
<li>stop the nsclient service</li>
<li>overwrite the nsclient.ini file</li>
<li>start the nsclient service</li>
</ul>
<p>For reasons i cannot disclose, this could not be done using any group policies.  So we went the ghetto batch way:</p>
<p><code><br />
@psexec \\%1 "C:\Program Files\NSClient++\NSclient++.exe" -uninstall<br />
@xcopy /Y C:\tool\nagios\nsclient\* "\\%1\c$\program files\nsclient++\"<br />
@psexec \\%1 "C:\Program Files\NSClient++\NSclient++.exe" -install<br />
@psexec \\%1 "C:\Program Files\NSClient++\NSclient++.exe" -start<br />
@echo Finished %1<br />
</code></p>
<p>This assumes you have nsclient++ already, which is an awesome piece of software that you can grab from <a href="http://nsclient.org/">nsclient.org</a>, and that you have <a href="http://technet.microsoft.com/en-us/sysinternals/bb896649.aspx">psexec</a> installed to execute commands.</p>
<p>Using this script, you can just run <strong>C:\tool\nagios\update_nsc.bat server_name</strong> to have the server monitored again.</p>
<p>Thank you,<br />
Michael</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelhendrickx.com/201005_changing-nsclient-configurations-in-bulk.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Change the ILO server name under Linux</title>
		<link>http://michaelhendrickx.com/201004_change-the-ilo-server-name-under-linux.html</link>
		<comments>http://michaelhendrickx.com/201004_change-the-ilo-server-name-under-linux.html#comments</comments>
		<pubDate>Sun, 25 Apr 2010 13:57:22 +0000</pubDate>
		<dc:creator>Michael Hendrickx</dc:creator>
				<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[blade]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[ilo]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[oa]]></category>
		<category><![CDATA[onboard administrator]]></category>

		<guid isPermaLink="false">http://michaelhendrickx.com/?p=268</guid>
		<description><![CDATA[At work, we have a lot of HP Blade servers, and manage these through HP Onboard Administrator.  By default, the server names are adapted from the Windows hostname, due to HP Insight Management agent tools.  When running Linux, there doesn&#8217;t seem to be a option, or at least I couldn&#8217;t find one.
While questioned [...]]]></description>
			<content:encoded><![CDATA[<p>At work, we have a lot of HP Blade servers, and manage these through HP Onboard Administrator.  By default, the server names are adapted from the Windows hostname, due to HP Insight Management agent tools.  When running Linux, there doesn&#8217;t seem to be a option, or at least I couldn&#8217;t find one.</p>
<p>While questioned a few times on HP forums (such as <a href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1034264">this thread</a>), questions rose to &#8220;installing windows on the server, then reinstall Linux&#8221;, it is possible in the web interface to be set.  It&#8217;s not obviously placed, and hence might require some searching.<span id="more-268"></span></p>
<p>First, open the blade&#8217;s ILO web interface, and select the concerned blade and choose <strong>Web Administration</strong> in its ILO menu.</p>
<p><a href="http://michaelhendrickx.com/wp-content/uploads/2010/04/c7_1.jpg"><img src="http://michaelhendrickx.com/wp-content/uploads/2010/04/c7_1-150x150.jpg" alt="" title="c7_1" width="150" height="150" class="aligncenter size-thumbnail wp-image-269" /></a></p>
<p>When logged in in the blade itself (usually done through SSO of the enclosure), choose &#8220;Adminstration&#8221;.</p>
<p><a href="http://michaelhendrickx.com/wp-content/uploads/2010/04/c7_2.jpg"><img src="http://michaelhendrickx.com/wp-content/uploads/2010/04/c7_2-150x150.jpg" alt="" title="c7_2" width="150" height="150" class="aligncenter size-thumbnail wp-image-270"/></a></p>
<p>Finally, choose <strong>options</strong>, and then <strong>Settings &raquo; Access</strong> in the left menu pane.  There you&#8217;ll see Server name, and you can fill what you want.</p>
<p><a href="http://michaelhendrickx.com/wp-content/uploads/2010/04/c7_3.jpg"><img src="http://michaelhendrickx.com/wp-content/uploads/2010/04/c7_3-150x150.jpg" alt="" title="c7_3" width="150" height="150" class="aligncenter size-thumbnail wp-image-271" /></a></p>
<p>True, it has nothing to do with Linux, but it gives us easier to manage hostname links in Onboard Administrator.</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelhendrickx.com/201004_change-the-ilo-server-name-under-linux.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>RIM scaling problems?  Or just chain IM&#8217;s?</title>
		<link>http://michaelhendrickx.com/201004_rim-scaling-problems-or-just-chain-ims.html</link>
		<comments>http://michaelhendrickx.com/201004_rim-scaling-problems-or-just-chain-ims.html#comments</comments>
		<pubDate>Fri, 09 Apr 2010 12:45:30 +0000</pubDate>
		<dc:creator>Michael Hendrickx</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[rim]]></category>
		<category><![CDATA[scaling]]></category>

		<guid isPermaLink="false">http://michaelhendrickx.com/?p=265</guid>
		<description><![CDATA[I received from several BlackBerry IM contacts the following message:
Hello, greetings from RIM (Research In Motion) proprietors of BlackBerry. This message is to inform all of our users, that our servers have recently been really full, so we are asking for your help to fix this problem. We need our active users to re-send this [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://michaelhendrickx.com/wp-content/uploads/2010/04/rim.jpeg" alt="" title="rim" width="127" height="86" align="right" />I received from several BlackBerry IM contacts the following message:</p>
<blockquote><p>Hello, greetings from RIM (Research In Motion) proprietors of BlackBerry. This message is to inform all of our users, that our servers have recently been really full, so we are asking for your help to fix this problem. We need our active users to re-send this message to everyone on your contact list inorder to confirm our active users that use BlackBerry Messenger, if you do not send this message to all your BlackBerry Messenger contacts then your account will remain inactive with the consequence of losing all your contacts.</p>
<p>We apologize for the inconvenience but this is the only way possible to resolve this problem. Sincerely Research in Motion. For more information visit:<br />
www.blackberry.com/inactiveuser</p></blockquote>
<p>Of course it doesn&#8217;t take much to realize that this is a chain-mail type of IM.  The web page itself doesn&#8217;t exist.  Wonder how many people forwarded it..</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelhendrickx.com/201004_rim-scaling-problems-or-just-chain-ims.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>VoIP unblocked in the UAE, the UAE way.</title>
		<link>http://michaelhendrickx.com/201003_voip-unblocked-in-the-uae-the-uae-way.html</link>
		<comments>http://michaelhendrickx.com/201003_voip-unblocked-in-the-uae-the-uae-way.html#comments</comments>
		<pubDate>Tue, 16 Mar 2010 07:26:41 +0000</pubDate>
		<dc:creator>Michael Hendrickx</dc:creator>
				<category><![CDATA[uae]]></category>
		<category><![CDATA[blocked]]></category>
		<category><![CDATA[tra]]></category>
		<category><![CDATA[voip]]></category>

		<guid isPermaLink="false">http://michaelhendrickx.com/?p=260</guid>
		<description><![CDATA[All hail, newspapers and radio&#8217;s stated that VoIP calls are now allowed in the UAE, but.. -and there&#8217;s a catch always- only &#8220;through licensed operators&#8221;.
In layman terms, VoIP calls will be billed and the prices will be set by those operators.  So we&#8217;d have to wait and see if there will be big savings [...]]]></description>
			<content:encoded><![CDATA[<p><img align="right" src="http://michaelhendrickx.com/wp-content/uploads/2010/03/skype.jpg" alt="skype remains blocked in the UAE" title="skype" width="133" height="133"/>All hail, <a href="http://www.thenational.ae/apps/pbcs.dll/article?AID=/20100316/NATIONAL/703159818/1133">newspapers</a> and radio&#8217;s stated that VoIP calls are now allowed in the UAE, but.. -and there&#8217;s a catch always- only &#8220;through licensed operators&#8221;.</p>
<p>In layman terms, VoIP calls will be billed and the prices will be set by those operators.  So we&#8217;d have to wait and see if there will be big savings on VoIP calles, if any at all.  The licensed operators would be:</p>
<ul>
<li>Du</li>
<li>Etisalat</li>
<li>Thuraya</li>
<li>Yahsat</li>
</ul>
<p>Of course, skype and vonage and the likes remains blocked, as they don&#8217;t generate revenue for the local market.  Normal for a country with a large number of expatriates, whereby the telco&#8217;s main revenue is from overseas calls.</p>
<p>Thank you,<br />
Michael</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelhendrickx.com/201003_voip-unblocked-in-the-uae-the-uae-way.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Virtual Server 2005 &#8211; network trouble?</title>
		<link>http://michaelhendrickx.com/201002_microsoft-virtual-server-2005-network-trouble.html</link>
		<comments>http://michaelhendrickx.com/201002_microsoft-virtual-server-2005-network-trouble.html#comments</comments>
		<pubDate>Thu, 25 Feb 2010 06:20:14 +0000</pubDate>
		<dc:creator>Michael Hendrickx</dc:creator>
				<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[virtual server]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://michaelhendrickx.com/?p=255</guid>
		<description><![CDATA[Hi all,
In our intranet development environment we run Microsoft Virtual Server, it was setup by the consultants who developed our Intranet&#8217;s first phase.  Now, the second phase is about the start, we dusted off those servers and found out that the virtual machines all had no network adapters installed anymore.
After cursing, and making a [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://michaelhendrickx.com/wp-content/uploads/2010/02/vss.jpeg" alt="" title="vss" width="115" height="118" align="right" />Hi all,</p>
<p>In our intranet development environment we run Microsoft Virtual Server, it was setup by the consultants who developed our Intranet&#8217;s first phase.  Now, the second phase is about the start, we dusted off those servers and found out that the virtual machines all had no network adapters installed anymore.</p>
<p>After cursing, and making a plan of migrating this to VMWare&#8217;s ESX (sorry consultant) next week, we found out that the only way of solving this was to remove the virtual adapters from the Virtual Server console, and adding them again.  In the client machine&#8217;s, a static IP assigned adapter was trying to fetch an IP address (yeah, go figure).  By just setting it to dynamic (dhcp), and then reassigning the static address, it was solved.</p>
<p>I guess Microsoft is about just re-trying it, rebooting, re-adding.  But we&#8217;ll be switching to ESX anyways.</p>
<p>Thank you,<br />
Michael</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelhendrickx.com/201002_microsoft-virtual-server-2005-network-trouble.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
