<?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>Strangeparty &#187; IBM</title>
	<atom:link href="http://www.strangeparty.com/taxonomy/ibm/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.strangeparty.com</link>
	<description>A blog about life, linux and photography</description>
	<lastBuildDate>Mon, 16 Jan 2012 14:44:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Message Broker v8: Record, Replay and REST</title>
		<link>http://www.strangeparty.com/2012/01/06/message-broker-v8-record-replay-and-rest/</link>
		<comments>http://www.strangeparty.com/2012/01/06/message-broker-v8-record-replay-and-rest/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 09:06:59 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[IBM]]></category>
		<category><![CDATA[Message Broker]]></category>
		<category><![CDATA[My Job]]></category>
		<category><![CDATA[messagebroker]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/?p=880</guid>
		<description><![CDATA[<p>IBM WebSphere Message Broker v8 was released in December last year &#8211; There is an announcement and comparison of versions on the IBM website.</p> <p>IBM WebSphere Message Broker introduced Record and Replay as part of its version 8 release. I thought I would just write a brief quickstart guide to getting running with record and replay, and <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.strangeparty.com/2012/01/06/message-broker-v8-record-replay-and-rest/">Message Broker v8: Record, Replay and REST</a></span>]]></description>
			<content:encoded><![CDATA[<p>IBM WebSphere Message Broker v8 was released in December last year &#8211; There is an <a href="http://www-01.ibm.com/common/ssi/ShowDoc.jsp?docURL=/common/ssi/rep_ca/1/897/ENUS211-391/index.html&amp;lang=en">announcement</a> and <a href="http://www-01.ibm.com/software/integration/messagebrokerproductline/versions/index.html">comparison of versions</a> on the IBM website.</p>
<p>IBM WebSphere Message Broker introduced Record and Replay as part of its version 8 release. I thought I would just write a brief quickstart guide to getting running with record and replay, and in particular with working with the new REST interface which comes with it. There is actually a <a href="ftp://public.dhe.ibm.com/software/integration/wbibrokers/docs/V8.0/Record_and_replay.pdf">Record and Replay specific PDF</a> available too, which contains all the details you might want for using Record and Replay (far more detail than I cover here). The main reason I am writing this, is it can be a little daunting trying to get Record and Replay going, as it does have a fair bit of configuration, and involves a few areas of a quite large product.</p>
<p><span id="more-880"></span></p>
<h3>Setting up Recording</h3>
<p>From your WMB install dir, run the db2 schema file to create the sample database for Record and Replay. Edit the file if you want to use a database name other than MB8RECORD, a specific schema or increase the storage size per message above 5mb.</p>
<blockquote>
<pre>db2 -tvf ddl/db2/DataCaptureSchema.sql</pre>
</blockquote>
<p>Set the password for your database</p>
<blockquote>
<pre>mqsisetdbparms MB8BROKER -n MBRECORD -u username -p password</pre>
</blockquote>
<p>Set the DataCaptureStore configurable service to set where to record to and which EG to do the recording (You can also do any of these configurable service steps via the Message Broker Explorer gui)</p>
<blockquote>
<pre>mqsicreateconfigurableservice MB8BROKER -c DataCaptureStore -o MyCaptureStore \
   -n "dataSourceName,egForRecord" -v "MBRECORD,default"</pre>
</blockquote>
<p>Define where to record messages from. Use a wildcard to set all configurable services. Note that double quotes (&#8220;&#8221;) are required on unix, windows will want single quotes (&#8221;)</p>
<blockquote>
<pre>mqsicreateconfigurableservice MB8BROKER -c DataCaptureSource -o MyCaptureSource \
   -n "dataCaptureStore,topic" -v "MyCaptureStore,$SYS/Broker/MB8BROKER/Monitoring/#"</pre>
</blockquote>
<p>Alternatively you can list the flows explicitly with topics like &#8220;<em>$SYS/Broker/MB8BROKER/Monitoring/ExecutionGroupName/FlowName</em>&#8221; While we are configuring everything, set a replay destination too. Set EG default to replay to queue &#8220;REPLAY&#8221; on queue manager MB8QMGR</p>
<blockquote>
<pre>mqsicreateconfigurableservice MB8BROKER -c DataDestination -o MyDestination \
   -n "egForReplay,endpoint,endpointType" -v "default,wmq:/msg/queue/REPLAY@MB8QMGR,WMQDestination"</pre>
</blockquote>
<h3>Setting up Monitoring</h3>
<p>Now your broker is configured for recording, you will need to setup something to be recorded. Event Monitoring is used to emit data to record, so either follow the monitoring sample, read the docs on <a href="http://publib.boulder.ibm.com/infocenter/wmbhelp/v7r0m0/topic/com.ibm.etools.mft.doc/ac60386_.htm">Event Monitoring</a> or edit the sample monitoring profile in <em>sample/RecordReplay/basicMonitoringProfile.xml </em>to replace NODENAME with the name of your flow&#8217;s input node. Of course you can also configure event monitoring from within the flow editor in the toolkit &#8211; simply select a node and you will find monitoring in the properties view. If you have the flow source already, it is much easier to set the monitoring in the toolkit than it is to do it via the command line. You can also then use the <em>mqsireportflowmonitoring</em> command afterwards to give you the xml monitoring profile being used (which is basically what you are setting in the toolkit when setting the monitoring options on a flow)</p>
<p>There are two specific properties which are worth mentioning when it comes to monitoring for Record and Replay.<br />
If you tick the include bitstream option in the toolkit then the body of your message will be recorded. Choose a sensible encoding, as if you select CDATA and your body will not be a valid XML element, you will break the monitoring and no event will be emitted. If in doubt, use the hexbinary or base64 encoding. It is worth saying that if you record MQ headers, and replay that message, the headers will be attempted to be reused. Other transport headers will just end up in the body of your message.<br />
The other option I wanted to mention was the UserData area of Event Monitoring. If you include $ExceptionList in your monitoring settings, then if an error occurs and an event is emitted, the exception list will be included in the monitoring message. This will be recorded, and will be available from the Record and Replay web interface and REST Api.</p>
<p>If you used a monitoring profile you will need to configure the profile with the following commands:</p>
<blockquote>
<pre>mqsicreateconfigurableservice MB8BROKER -c MonitoringProfiles -o MyProfile</pre>
<pre>mqsichangeconfigurableservice MB8BROKER -c MonitoringProfiles -o MyProfile \
   -n profileProperties -p "sample/RecordReplay/basicMonitoringProfile.xml"</pre>
<pre>mqsichangeflowmonitoring MB8BROKER -e default -f MyFlow -m  MyProfile</pre>
</blockquote>
<p>Monitoring normally defaults to off, so you will probably need to turn it on with:</p>
<blockquote>
<pre>mqsichangeflowmonitoring MB8BROKER -e default -f MyFlow -c active</pre>
</blockquote>
<p>You can check that monitoring is correctly active with the command</p>
<blockquote>
<pre>mqsireportflowmonitoring MB8BROKER -n -e default -f MyFlow</pre>
</blockquote>
<p>You should see output like</p>
<blockquote>
<pre>BIP8911I: Monitoring settings for flow 'MyFlow' in execution group 'default' -  State?: active, ProfileName: 'MyProfile'.
BIP8912I: Event: 'IN.transaction.End',  Event name: 'IN.transaction.End',  Configured?: yes,  State?: enabled.
BIP8912I: Event: 'IN.transaction.Rollback',  Event name: 'IN.transaction.Rollback',  Configured?: yes,  State?: enabled.</pre>
</blockquote>
<p>You can now put messages through your flow and they will be recorded.</p>
<h3>Enabling the REST interface and Web UI</h3>
<p>To enable the REST interface and Web UI you need to enable the HTTP server and set the port for it to run on. You will also need to set which ExecutionGroup will process requests to view recorded messages. (You can also do this via the MBX properties, see the properties for your broker, and for your DataCaptureStore ConfigurableService)</p>
<blockquote>
<pre>mqsichangeproperties MB8BROKER -b webadmin -o server -n enabled -v true
mqsichangeproperties MB8BROKER -b webadmin -o HTTPConnector -n port -v 8080
mqsichangeproperties MB8BROKER -o DataCaptureStore -c MyCaptureStore -n egForView -v default</pre>
</blockquote>
<p>You can also configure HTTPS if you prefer, details are in the product documentation.</p>
<h3>Viewing recorded data</h3>
<p>You can of course view all the data via a web browser by pointing to the url <em>http://localhost:8080</em> but you can also do it all via the command line. The following will get back the most recent 30 recorded pieces of data from your captureStore MyCaptureStore.</p>
<blockquote>
<pre>$curl "http://localhost:8080/datacapturestore/MyCaptureStore/"</pre>
</blockquote>
<p>This returns quite a large XML list of messages, so let&#8217;s try getting just one message.</p>
<blockquote>
<pre>$curl "http://localhost:8080/datacapturestore/DefaultCaptureStore/?numberOfEntriesPerPage=1"
&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;DataCaptureStore TotalResults="92" NumberOfEntriesPerPage="1" PageNumber="1"&gt;
&lt;DataCaptureEntry wmb_msgkey="414d51204d4238514d475220202020203d1bc14e4d290020:414d51204d4238514d475220202020203d1bc14e1b3a0020"
  has_bitstream="Y" has_exception="N" has_userdata="N" event_type="IN.transaction.End"
  event_name="IN.transaction.End" event_srcaddr="IN.transaction.End" broker_name="MB8BROKER"
  broker_uuid="d405fc08-0ec6-11e1-9d9b-7f0000010000" exgrp_name="default" exgrp_uuid="7fd654a2-3301-0000-0080-d4d9103989f9"
  msgflow_name="MyFlow" msgflow_uuid="0a4555a2-3301-0000-0080-e2ed33c9dfcd" appl_name="" appl_uuid="" library_name=""
  library_uuid="" node_name="IN" node_type="ComIbmMQInputNode" detail="IN" terminal_name="" key_fld_1_nm=""
  key_fld_2_nm="" key_fld_3_nm="" key_fld_4_nm="" key_fld_5_nm="" event_timestamp="2011-11-16 11:25:00.647"
  local_transaction_id="9f228bde-1045-11e1-9fac-7f0000010000-1" parent_transaction_id="" global_transaction_id=""/&gt;
&lt;/DataCaptureStore&gt;</pre>
</blockquote>
<p>You can of course filter on any of the data fields above as follows.</p>
<blockquote>
<pre>$curl "http://localhost:8080/datacapturestore/DefaultCaptureStore/?numberOfEntriesPerPage=1&amp;has_bitstream=Y"</pre>
</blockquote>
<p>Filtering is possible on all the above columns, with the addition that you can also set a timestamp range with The REST Api has documentation at <em>docs/REST/index.html </em>which covers all these options.</p>
<p>You can also query which DataCaptureStores are setup for viewing by loading the base url &#8220;http://localhost:8080/datacapturestore/&#8221;</p>
<p>You may then want to download the body of a recorded message. (My example has a shortened url as the message key rather long. Use the wmb_msgkey from your above list requests) Depending on how you set the data to be recorded in your monitoring profile, you will get back a different encoding data</p>
<blockquote>
<pre>$curl "http://localhost:8080/datacapturestore/DefaultCaptureStore/12345"
&lt;Data encoding="base64Binary"&gt;SGVsbG8gV29ybGQK&lt;/Data&gt;</pre>
</blockquote>
<p>You don&#8217;t have to get the data back as encoded payloads wrapped in XML. If you set download=true then you will just get the decoded bitstream</p>
<blockquote>
<pre>$curl "http://localhost:8080/datacapturestore/DefaultCaptureStore/12345?download=true"
HelloWorld</pre>
</blockquote>
<p>You can also download an ExceptionList if your message has one recorded; set payload=exceptionlist to get the exceptionlist instead of the bitstream. This can also be combined with download=true</p>
<blockquote>
<pre>$curl "http://localhost:8080/datacapturestore/DefaultCaptureStore/12345?payload=exceptionlist&amp;download=true"</pre>
</blockquote>
<h3>Replaying recorded data</h3>
<p>As we already defined a DataDestination called <em>MyDestination</em> above, we have somewhere we can replay to. Again, you can do this via the web browser quite easily, but doing it with curl isn&#8217;t hard either.</p>
<blockquote>
<pre>$curl "http://localhost:8080/datacapturestore/DefaultCaptureStore/12345" -d "replaydestination=MyDestination"</pre>
</blockquote>
<h3>Viewing more about your broker</h3>
<p>There are lots of other details about your broker and what is deployed on it available via &#8220;http://localhost:8080/admin&#8221;. See the REST Api documentation for full details</p>
<blockquote>
<pre>$curl "http://localhost:7101/admin"
&lt;?xml version="1.0"?&gt;
&lt;brokerResponse brokerName="MB8BROKER" completionCode="ok"&gt;
&lt;executiongroup name="default" runstate="running" path="/admin/executiongroup/default"&gt;&lt;/executiongroup&gt;
&lt;executiongroup name="test" runstate="running" path="/admin/executiongroup/test"&gt;&lt;/executiongroup&gt;
&lt;log name="Log" runstate="" path="/admin/log/Log"&gt;&lt;/log&gt;
&lt;adminqueue name="Administration Queue" runstate="" path="/admin/adminqueue/Administration Queue"&gt;&lt;/adminqueue&gt;
&lt;/brokerResponse&gt;</pre>
<pre>$curl "http://localhost:7101/admin/executiongroup/test/"
&lt;?xml version="1.0"?&gt;
&lt;brokerResponse brokerName="MB8BROKER" completionCode="ok"&gt;
&lt;application name="TestXpath" runstate="running" path="/admin/executiongroup/test/application/TestXpath"&gt;&lt;/application&gt;
&lt;/brokerResponse&gt;</pre>
<pre>$curl "http://localhost:7101/admin/executiongroup/test/properties"
&lt;?xml version="1.0"?&gt;
&lt;brokerResponse brokerName="MB8BROKER" completionCode="ok"&gt;
&lt;Name&gt;test&lt;/Name&gt;&lt;ShortDescription&gt;&lt;/ShortDescription&gt;&lt;LongDescription&gt;&lt;/LongDescription&gt;
&lt;Type&gt;ExecutionGroup&lt;/Type&gt;&lt;UUID&gt;3adf66ca-3301-0000-0080-814338bb17bb&lt;/UUID&gt;&lt;FlowDebugPort&gt;0&lt;/FlowDebugPort&gt;
&lt;TraceNodes&gt;on&lt;/TraceNodes&gt;&lt;Running&gt;true&lt;/Running&gt;
&lt;/brokerResponse&gt;</pre>
</blockquote>
<p>&#8220;http://localhost:7101/admin/executiongroup/test/extendedproperties&#8221; will return a very large amount of information.</p>
<p>Several /admin paths also support recurse=true, for example to see everything deployed on your broker use &#8221;http://localhost:8080/admin?recurse=true&#8221;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>This was only a brief introduction to Record and Replay in WMB 8, and there is much more detail in the normal documentation. Hopefully a future update to WMB will bring more power and functionality to this area, as well as some more database support. Obviously I can&#8217;t say what will be added, let alone when, but I hope you get some value out of what is there currently.</p>
<p><em>edit 16/01/12 &#8211; corrections as supplied by Sebastian</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2012/01/06/message-broker-v8-record-replay-and-rest/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Message Broker v8 with MySQL</title>
		<link>http://www.strangeparty.com/2011/12/15/message-broker-v8-with-mysql/</link>
		<comments>http://www.strangeparty.com/2011/12/15/message-broker-v8-with-mysql/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 09:22:30 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Message Broker]]></category>
		<category><![CDATA[My Job]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[messagebroker]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[odbc]]></category>
		<category><![CDATA[wmb]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/?p=884</guid>
		<description><![CDATA[<p>Now that you know that you can use Message Broker v8 on Ubuntu for development, you may be wondering if you can use some of the databases that are more common on Linux, such as MySQL. You can!</p> <p>IBM WebSphere Message Broker now uses UnixODBC to connect to many databases. Though not supported by IBM, <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.strangeparty.com/2011/12/15/message-broker-v8-with-mysql/">Message Broker v8 with MySQL</a></span>]]></description>
			<content:encoded><![CDATA[<p>Now that you know that you can use <a href="http://www.strangeparty.com/2011/12/14/websphere-message-broker-on-ubuntu/">Message Broker v8 on Ubuntu</a> for development, you may be wondering if you can use some of the databases that are more common on Linux, such as MySQL. You can!</p>
<p>IBM WebSphere Message Broker now uses UnixODBC to connect to many databases. Though not supported by IBM, you can actually connect to MySQL from Message Broker using UnixODBC.</p>
<p><span id="more-884"></span></p>
<p>If you are on Ubuntu, you can install the MySQL UnixODBC dirver and the MySQL server with apt-get:</p>
<blockquote>
<pre>apt-get install libmyodbc mysql-server</pre>
</blockquote>
<p>Your environment variable <em>$ODBCINI</em> should point to your <em>odbc.ini</em>, mine points to /var/mqsi/odbc/odbc.ini and the base file was copied from <em>/opt/IBM/mqsi/8.0.0.0/ODBC/unixodbc/odbc.ini</em></p>
<p>You need to set a database definition for a mysql database, something like the following (assuming &#8220;wmb&#8221; is the name of your MySQL database created later)</p>
<blockquote>
<pre>[MYSQL]
Description     = MYSQL DB
Driver          = MySQL
Database        = wmb
Server          = 127.0.0.1
Port            = 3306</pre>
</blockquote>
<p>You also need to make sure your <em>$ODBCSYSINI</em> points to the folder (not the file) where your <em>odbcinst.ini</em> file has been copied to. Mine is set to <em>/var/mqsi/odbc</em> and the <em>odbcinst.ini</em> file was copied from <em>/opt/mqsi/8.0.0.0/ODBC/unixodbc/odbcinst.ini</em>, you also need to add a definition to explain to UnixODBC how to connect to a mysql database</p>
<p>The following should be enough to get UnixODBC working with MySQL</p>
<blockquote>
<pre>#Sample from package libmyodbc
[MySQL]
Description     = MySQL driver
Driver          = /usr/lib/odbc/libmyodbc.so
Setup           = /usr/lib/odbc/libodbcmyS.so
CPTimeout       =
CPReuse         =</pre>
</blockquote>
<p>Now create a mysql database (<em>mysqladmin create wmb</em>). You may need to GRANT some permissions to your user in MySQL, or add yourself to the mysql group and logout and back in again.</p>
<p>You can now check the database connection using the WMB mqsicvp command, which will also describe which database functions are available:</p>
<pre>mqsicvp -n MYSQL -u anton -p password</pre>
<pre>BIP8270I: Connected to Datasource 'MYSQL' as user 'anton'. The datasource platform is 'MySQL', version '5.1.58-1ubuntu1'.
===========================
databaseProviderVersion      = 5.1.58-1ubuntu1
driverVersion                = 05.01.0006
driverOdbcVersion            = 03.51
driverManagerVersion         = 03.52.0002.0002
driverManagerOdbcVersion     = 03.52
databaseProviderName         = MySQL
datasourceServerName         = 127.0.0.1 via TCP/IP
databaseName                 = wmb
odbcDatasourceName           = MYSQL
driverName                   = libmyodbc5.so
supportsStoredProcedures     = Yes
procedureTerm                = stored procedure
accessibleTables             = No
accessibleProcedures         = No
identifierQuote              = `
specialCharacters            = None
describeParameter            = No
schemaTerm                   =
tableTerm                    = table
sqlSubqueries                = 31
activeEnvironments           = 0
maxDriverConnections         = 0
maxCatalogNameLength         = 192
maxColumnNameLength          = 192
maxSchemaNameLength          = 0
maxStatementLength           = 8192
maxTableNameLength           = 192
supportsDecimalType          = Yes
supportsDateType             = Yes
supportsTimeType             = No
supportsTimeStampType        = No
supportsIntervalType         = No
supportsAbsFunction          = Yes
supportsAcosFunction         = Yes
supportsAsinFunction         = Yes
supportsAtanFunction         = Yes
supportsAtan2Function        = Yes
supportsCeilingFunction      = Yes
supportsCosFunction          = Yes
supportsCotFunction          = Yes
supportsDegreesFunction      = Yes
supportsExpFunction          = Yes
supportsFloorFunction        = Yes
supportsLogFunction          = Yes
supportsLog10Function        = Yes
supportsModFunction          = Yes
supportsPiFunction           = Yes
supportsPowerFunction        = Yes
supportsRadiansFunction      = Yes
supportsRandFunction         = Yes
supportsRoundFunction        = Yes
supportsSignFunction         = Yes
supportsSinFunction          = Yes
supportsSqrtFunction         = Yes
supportsTanFunction          = Yes
supportsTruncateFunction     = Yes
supportsConcatFunction       = Yes
supportsInsertFunction       = Yes
supportsLcaseFunction        = Yes
supportsLeftFunction         = Yes
supportsLengthFunction       = Yes
supportsLTrimFunction        = Yes
supportsPositionFunction     = Yes
supportsRepeatFunction       = Yes
supportsReplaceFunction      = Yes
supportsRightFunction        = Yes
supportsRTrimFunction        = Yes
supportsSpaceFunction        = Yes
supportsSubstringFunction    = Yes
supportsUcaseFunction        = Yes
supportsExtractFunction      = Yes
supportsCaseExpression       = Yes
supportsCastFunction         = Yes
supportsCoalesceFunction     = Yes
supportsNullIfFunction       = Yes
supportsConvertFunction      = No
supportsSumFunction          = Yes
supportsMaxFunction          = Yes
supportsMinFunction          = Yes
supportsCountFunction        = Yes
supportsBetweenPredicate     = Yes
supportsExistsPredicate      = Yes
supportsInPredicate          = Yes
supportsLikePredicate        = Yes
supportsNullPredicate        = Yes
supportsNotNullPredicate     = Yes
supportsLikeEscapeClause     = Yes
supportsClobType             = Yes
supportsBlobType             = Yes
charDatatypeName             = char
varCharDatatypeName          = varchar
longVarCharDatatypeName      = long varchar
clobDatatypeName             = N/A
timeStampDatatypeName        = N/A
binaryDatatypeName           = binary
varBinaryDatatypeName        = varbinary
longVarBinaryDatatypeName    = long varbinary
blobDatatypeName             = N/A
intDatatypeName              = integer
doubleDatatypeName           = double
varCharMaxLength             = 0
longVarCharMaxLength         = 0
clobMaxLength                = 0
varBinaryMaxLength           = 0
longVarBinaryMaxLength       = 0
blobMaxLength                = 0
timeStampMaxLength           = 0
identifierCase               = Mixed
escapeCharacter              = \
longVarCharDatatype          = -1
clobDatatype                 = 0
longVarBinaryDatatype        = -4
blobDatatype                 = 0

BIP8273I: The following datatypes and functions are not natively 
supported by datasource 'MYSQL' using this ODBC driver:
Unsupported datatypes: 'TIME, TIMESTAMP, INTERVAL' Unsupported functions: 'CONVERT'</pre>
<pre>Examine the specific datatypes and functions not supported
natively by this datasource using this ODBC driver.
When using these datatypes and functions within ESQL, the
associated data processing is done within WebSphere Message
Broker rather than being processed by the database provider.  

Note that "functions" within this message can refer to functions or predicates. 

BIP8071I: Successful command completion.</pre>
<p>There &#8211; done! Now you can use MySQL with WebSphere Message Broker on Ubuntu. Don&#8217;t forget to set the database password with <em>mqsisetdbparms</em> before trying to actually connect from your database nodes.</p>
<p>Also, the name of the database according to WMB is &#8220;MYSQL&#8221; as that is what I defined in the odbc.ini. The name of the database according to mysql is &#8220;wmb&#8221;. They don&#8217;t need to be different, but it might help having unique names if you are trying to track down a database connection issue.</p>
<p>Of course, the mysql database server does not need to be local to the broker &#8211; The mysql odbc driver should allow you connect to any accessible tcpip mysql server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2011/12/15/message-broker-v8-with-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WebSphere Message Broker on Ubuntu</title>
		<link>http://www.strangeparty.com/2011/12/14/websphere-message-broker-on-ubuntu/</link>
		<comments>http://www.strangeparty.com/2011/12/14/websphere-message-broker-on-ubuntu/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 09:22:13 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Message Broker]]></category>
		<category><![CDATA[My Job]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[messagebroker]]></category>
		<category><![CDATA[mq]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wmb]]></category>
		<category><![CDATA[wmq]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/?p=714</guid>
		<description><![CDATA[<p>WebSphere Message Broker v8 now supports Ubuntu for development systems (i.e. not production use) - http://www-01.ibm.com/support/docview.wss?uid=swg27023600#Ubuntu</p> <p>I have been running MQ and Message Broker on Ubuntu and Debian since shortly after I joined IBM in 2005, and it seems there are lots of other people doing this too despite it not being a supported platform before <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.strangeparty.com/2011/12/14/websphere-message-broker-on-ubuntu/">WebSphere Message Broker on Ubuntu</a></span>]]></description>
			<content:encoded><![CDATA[<p>WebSphere Message Broker v8 now supports Ubuntu for development systems (i.e. not production use) - <a href="http://www-01.ibm.com/support/docview.wss?uid=swg27023600#Ubuntu">http://www-01.ibm.com/support/docview.wss?uid=swg27023600#Ubuntu</a></p>
<p>I have been running MQ and Message Broker on Ubuntu and Debian since shortly after I joined IBM in 2005, and it seems there are <a href="http://www.google.co.uk/search?q=mq+on+ubuntu">lots of other people doing this too</a> despite it not being a supported platform before now.</p>
<p>Lots of people have advice on how to install MQ and WMB, and it is worth mentioning them in case you have problems.</p>
<p><a href="http://www.reidmorrison.com/linux/install-websphere-mq-on-ubuntu">http://www.reidmorrison.com/linux/install-websphere-mq-on-ubuntu</a></p>
<p><a href="http://www.gefira.pl/blog/2010/07/03/websphere-mq-and-ubuntu-howto/">http://www.gefira.pl/blog/2010/07/03/websphere-mq-and-ubuntu-howto/</a></p>
<p><a href="http://blog.herbert.groot.jebbink.nl/2009/06/wmb-61-ubuntu-904.html">http://blog.herbert.groot.jebbink.nl/2009/06/wmb-61-ubuntu-904.html</a></p>
<p>The best advice I can give for installing MQ and WMB on Ubuntu is:</p>
<ul></ul>
<ul>
<li>change the /bin/sh symlink to point to /bin/bash &#8211; MQ Doesn&#8217;t like installing with dash as the default shell.</li>
<p>
</ul>
<ul>
<li>use rpm to install MQ &#8211; Alien is a bit of a hack, and does not work well. You will need to use the &#8220;&#8211;force-debian&#8221; flag on rpm to make it install.</li>
<p>
</ul>
<ul>
<li>One other thing which might help is to run the mqlicense.sh script with the &#8216;-console&#8217; flag as it may not find your X applications properly.</li>
<p>
</ul>
<p>Some user&#8217;s have noticed that chown on Debian and Ubuntu strips the setuid bit from the binaries (Debian and Ubuntu consider leaving setuid set on an executable when you change it&#8217;s owner a security flaw, whereas Redhat and SuSE appear not to) so you may need to fix the permissions (best to check the permissions of the same level of MQ from a RHEL or SLES box and set them the same) though I have not seen this with recent versions of MQ.</p>
<p>Message Broker v8 installs quite happily on Ubuntu. The only issues that I know of are that some of the eclipse based gui applications do not draw everything correctly. This is a known eclipse-GTK bug, and is more common on releases after Lucid Lynx (10.04). A workaround is to set the environment variable  <em>GDK_NATIVE_WINDOWS=1</em></p>
<p>Update 05/01/12 &#8211; I have just noticed that the script &#8216;mqsicreateworkpath&#8217; which is used to initialise /var/mqsi correctly still uses ksh. Either install ksh on your system or edit the script to say bash in the first line instead of ksh (it should work fine then)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2011/12/14/websphere-message-broker-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Frequently Asked Questions about the GNU GPL</title>
		<link>http://www.strangeparty.com/2011/12/08/frequently-asked-questions-about-the-gnu-gpl/</link>
		<comments>http://www.strangeparty.com/2011/12/08/frequently-asked-questions-about-the-gnu-gpl/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 11:18:45 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[IBM]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Rights]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[gpl]]></category>
		<category><![CDATA[patents]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/?p=250</guid>
		<description><![CDATA[<p>I have been flicking through the following FAQ on the GNU GPL: Frequently Asked Questions about the GNU GPL &#8211; GNU Project &#8211; Free Software Foundation (FSF). I am trying to understand the risks that we are told about regularly in IBM of working with/on Open Source code.</p> <p>I have to say that most of <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.strangeparty.com/2011/12/08/frequently-asked-questions-about-the-gnu-gpl/">Frequently Asked Questions about the GNU GPL</a></span>]]></description>
			<content:encoded><![CDATA[<p>I have been flicking through the following FAQ on the GNU GPL: <a href="http://www.gnu.org/copyleft/gpl-faq.html">Frequently Asked Questions about the GNU GPL &#8211; GNU Project &#8211; Free Software Foundation (FSF)</a>. I am trying to understand the risks that we are told about regularly in IBM of working with/on Open Source code.</p>
<p>I have to say that most of the risks are rather undefined, and no real examples are given. I am having trouble figuring out why IBM is so scared of its employees working with Open Source, and yet at the same time encouraging it (I run Debian on my laptop, and in fact run a Debian server distributing internal tools packaged specially for other Debian users).</p>
<p>The one big concern is of course patents. Personal views on software patents aside, if I were to code a patented idea into some GPL&#8217;d code and release it (as an IBM employee) then quite likely that patent will be considered GPL&#8217;d and could be used by others &#8211; the extent of patents in GPL&#8217;d code is untested in court, hence the reason for v3 of the GPL, which will probably explicitly state that any patents are given away under the terms of the GPL if in GPL&#8217;d code.</p>
<p>However, even if not modifying the code there is still a huge concern about working with it. Even releasing code that is dynamically linked against a LGPL&#8217;d library is incredibly hard to get approved. Why should it be? The FAQ above makes clear that if the library is LGPL&#8217;d, then dynamic linking (i.e. using a JAR file in Java) means that the library source must be available and some reverse engineering of the interaction between the two is allowed (in case someone wanted to rewrite the library). Your code does not have to be Open Sourced. Is it simply that shipping the source code is too much effort? Surely if I use a prebuilt JAR, and dump a zip of the corresponding source of a LGPL&#8217;d library in the zip I am shipping then that is it. I am complying with the terms of the GPL.</p>
<p>The only thing I can think of is the other side of Patents &#8211; somebody else has a patent on something in the GPL code, but the authors of the GPL code were not aware of this. If IBM were to ship GPL&#8217;d code that a competitor had a Patent on part of then indeed they would be liable for infringement, not just the author of the code. Is this risk likely? Well, SuSE have just signed a deal with Microsoft for this reason, but RedHat and Ubuntu have declined the deal. Maybe with the GPLv3 this will be less of a problem, as if another company releases GPL code then they will be explicitely releasing any patents on it too.</p>
<p>What if the patent holder is another third party. IBM could still be in trouble if a competitor finds they have a patent on some GPL&#8217;d code we are shipping. They won&#8217;t bother suing small linux vendors, but IBM has lots of money to claim from, that would be worth going to court for. Could they claim only for IBM and not all the little guys who have already been using it?</p>
<p>Is it too much risk to work on the fact that we could always change the code to avoid the patent at a later date?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2011/12/08/frequently-asked-questions-about-the-gnu-gpl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guest presenting on the Ubuntu UK PodCast</title>
		<link>http://www.strangeparty.com/2011/09/28/guest-presenting-on-the-ubuntu-uk-podcast/</link>
		<comments>http://www.strangeparty.com/2011/09/28/guest-presenting-on-the-ubuntu-uk-podcast/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 20:41:00 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[IBM]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[interview]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[southackton]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[UUPC]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/2011/09/28/guest-presenting-on-the-ubuntu-uk-podcast/</guid>
		<description><![CDATA[<p>I was a guest presenter on this weeks Ubuntu UK PodCast. I talked about Southackton, and IBM&#8217;s use of Ubuntu on the desktop. Listen to the podcast at http://t.co/vVL5M3YJ </p> ]]></description>
			<content:encoded><![CDATA[<p>I was a guest presenter on this weeks Ubuntu UK PodCast. I talked about Southackton, and IBM&#8217;s use of Ubuntu on the desktop.<br />
Listen to the podcast at <a href="http://t.co/vVL5M3YJ"><br />
http://t.co/vVL5M3YJ</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2011/09/28/guest-presenting-on-the-ubuntu-uk-podcast/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Blue Fusion 2011</title>
		<link>http://www.strangeparty.com/2011/03/15/blue-fusion-2011/</link>
		<comments>http://www.strangeparty.com/2011/03/15/blue-fusion-2011/#comments</comments>
		<pubDate>Tue, 15 Mar 2011 08:24:26 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[Blue Fusion]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[bluefusion]]></category>
		<category><![CDATA[engineering]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/?p=810</guid>
		<description><![CDATA[<p>As it is National Science and Engineering week, IBM Hursley are running Blue Fusion 2011 - The official press release summed it up quite well, and also contains a list of this year&#8217;s activities:</p> <p>HURSLEY, U.K. - 11 Mar 2011: More than 450 students from 80 schools across the South of England will be celebrating National Science <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.strangeparty.com/2011/03/15/blue-fusion-2011/">Blue Fusion 2011</a></span>]]></description>
			<content:encoded><![CDATA[<p>As it is <a href="http://www.britishscienceassociation.org/web/NSEW/">National Science and Engineering week</a>, <a href="http://www-03.ibm.com/press/uk/en/pressrelease/34021.wss">IBM Hursley are running Blue Fusion 2011</a> - The official press release summed it up quite well, and also contains a list of this year&#8217;s activities:</p>
<blockquote><p><strong>HURSLEY, U.K.	 -	 11 Mar 2011: </strong>More than 450 students from 80 schools across the South of England will be celebrating National Science and Engineering Week at IBM&#8217;s 16th annual Blue Fusion event. The students will need to use quick thinking, scientific knowledge and teamwork in a number of fun activities, designed to inspire and encourage young people to develop their interest in Science, Technology and Engineering.</p>
<p>“Communication” is the theme for National Science and Engineering Week 2011 and volunteers from IBM Hursley, Europe’s largest software development lab, have put together a wealth of fun, inspiring and engaging activities.</p>
<p>Each day, teams from 16 schools will participate in a variety of specially-designed activities promoting innovation, teamwork, problem solving and communication skills. Students solve puzzles and technological challenges that explore basic concepts in some of the most interesting areas of modern technology. The activities will include building network communications to cracking codes to designing an ecologically friendly house. The students will experience first hand how science benefits our everyday lives and how instrumented, interconnected and intelligent technology can help build a smarter planet.</p>
<p>Approximately 200 IBM employees volunteer their time and experience to Blue Fusion, many of whom are recent graduates who can share their passion and experience of working in the industry with the next generation. Local dignitaries will be attending the event throughout the week to see the impact and success of Blue Fusion in inspiring young people into Science, Technology and Engineering.</p></blockquote>
<p>I look forward to hosting schools on Thursday &#8211; it has been fun being involved for the last five years, so should be great this year too! I wrote briefly about <a href="http://www.strangeparty.com/2007/03/18/bluefusion-2007-done/">Blue Fusion</a> and <a href="http://www.strangeparty.com/2007/03/11/bright-sparks/">Bright Sparks</a> in 2007 (I can&#8217;t remember if that was the year I organised and ran <a href="http://www.danharrison.co.uk/">Blue Fusion with Dan</a>)</p>
<p>There are one or two videos about Blue Fusion which really show what the event is about:</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/as4Da-iU5ec" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/as4Da-iU5ec"></embed></object></p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/oX-xD6NFvbY" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/oX-xD6NFvbY"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2011/03/15/blue-fusion-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WebSphere Message Broker Fix Pack 7.0.0.1 available</title>
		<link>http://www.strangeparty.com/2010/07/22/websphere-message-broker-fix-pack-7-0-0-1-available/</link>
		<comments>http://www.strangeparty.com/2010/07/22/websphere-message-broker-fix-pack-7-0-0-1-available/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 09:21:08 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[IBM]]></category>
		<category><![CDATA[Message Broker]]></category>
		<category><![CDATA[My Job]]></category>
		<category><![CDATA[messagebroker]]></category>
		<category><![CDATA[wmb]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/?p=726</guid>
		<description><![CDATA[<p>Finally &#8211; All that hard work has paid off and the release is available!</p> <p>Fix Pack 7.0.0.1 (V7.0 Fix Pack 1) for WebSphere Message Broker v7.0 is now available. http://www-01.ibm.com/support/docview.wss?&#38;uid=swg24027267</p> <p>You can see what is new in 7.0.0.1 by looking in the Information Center</p> Simplicity and productivity User-defined patterns Solar Pattern Authoring sample Service Access <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.strangeparty.com/2010/07/22/websphere-message-broker-fix-pack-7-0-0-1-available/">WebSphere Message Broker Fix Pack 7.0.0.1 available</a></span>]]></description>
			<content:encoded><![CDATA[<p>Finally &#8211; All that hard work has paid off and the release is available!</p>
<blockquote><p>Fix Pack 7.0.0.1 (V7.0 Fix Pack 1) for WebSphere Message Broker v7.0 is now available.<br />
<a href="http://www-01.ibm.com/support/docview.wss?&amp;uid=swg24027267">http://www-01.ibm.com/support/docview.wss?&amp;uid=swg24027267</a></p></blockquote>
<p>You can <a href="http://publib.boulder.ibm.com/infocenter/wmbhelp/v7r0m0/topic/com.ibm.etools.mft.doc/bb22390_.htm ">see what is new in 7.0.0.1 by looking in the Information Center</a></p>
<ul>
<blockquote>
<li><strong>Si</strong><strong>mplicity and productivity</strong>
<ul>
<li>User-defined patterns</li>
<li>Solar Pattern Authoring sample</li>
<li>Service Access from <span class="ph">WebSphere MQ</span>: one-way pattern</li>
<li>Using a subflow as a user-defined node</li>
</ul>
</li>
<li><strong>Universal connectivity for SOA</strong>
<ul>
<li>New <span class="ph">CORBARequest</span> node</li>
<li>New <span class="ph">CICSRequest</span> node</li>
<li>New <span class="ph">WebSphere MQ File Transfer Edition</span> nodes</li>
<li>New <span class="ph">DatabaseInput</span> node</li>
<li>New <span class="ph">SecurityPEP</span> node</li>
<li>JMS transport for SOAP nodes</li>
<li>Querying WSDL with ?wsdl</li>
<li>HTTP nodes can use the embedded listener in an execution group</li>
<li>New HTTP Timeout terminal on <span class="ph">HTTPInput</span> and <span class="ph">SOAPInput</span> nodes</li>
<li>Securing the connection to IMS™ by using SSL</li>
<li>Propagating security credentials to IMS</li>
<li>Closing unused connections to Enterprise Information Systems</li>
<li>Propagating security credentials to SAP</li>
</ul>
</li>
<ul>
<li>New WS-Trust V1.3 compliant security token server (STS) support for message flow security</li>
</ul>
</blockquote>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2010/07/22/websphere-message-broker-fix-pack-7-0-0-1-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux User Group @ Hursley</title>
		<link>http://www.strangeparty.com/2009/09/16/linux-user-group-hursley/</link>
		<comments>http://www.strangeparty.com/2009/09/16/linux-user-group-hursley/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 17:56:09 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[HantsLug]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[hants]]></category>
		<category><![CDATA[hursley]]></category>
		<category><![CDATA[lug]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/?p=553</guid>
		<description><![CDATA[<p>On Saturday I hosted a group for 30 people at IBM Hursley for a Hampshire Linux User Group meeting.</p> <p>We had a good set of talks, including Andy Stanford-Clark talking about his twittering house and mousetraps as well as the twittering Red Funnel Ferries [telegraph.co.uk] and his energy monitoring via Current Cost devices. I did <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.strangeparty.com/2009/09/16/linux-user-group-hursley/">Linux User Group @ Hursley</a></span>]]></description>
			<content:encoded><![CDATA[<p>On Saturday I hosted a group for 30 people at IBM Hursley for a <a href="http://hants.lug.org.uk/">Hampshire Linux User Group</a> meeting.</p>
<p>We had a good set of talks, including <a href="http://www.twitter.com/andysc">Andy Stanford-Clark</a> talking about his twittering house and mousetraps as well as the twittering <a href="http://www.telegraph.co.uk/travel/travelnews/6188760/Twittering-ferries-alert-passengers-to-delays.html">Red Funnel Ferries</a> [telegraph.co.uk] and his energy monitoring via Current Cost devices.<br />
I did a brief (although rather technical) introduction to Debian packages (which will turn into a blogpost soon with any luck).<br />
Laura Cowen did a nice talk on <a href="http://activities.sugarlabs.org/en-US/sugar/addon/4042">InfoSplicer</a> which was originally designed for the Sugar platform of the <a href="http://laptop.org/">OLPC</a> hardware.<br />
Tony Whitmore gave a rather interesting talk on podcasting, from his experience in doing the  <a href="http://podcast.ubuntu-uk.org/">Ubuntu UK Podcast</a><br />
Adam Trickett talked about book reviews, and gave out a pile of free books for people to have in return for writing a review.</p>
<p><a href="http://lauracowen.co.uk/">Laura Cowen</a> also did an excellent writeup for <a href="http://eightbar.co.uk/2009/09/16/linux-users-descend-on-the-house/">eightbar</a></p>
<blockquote><p>On Saturday, we were mostly in the Auditorium (where Spitfires were built during WWII), then when we led everyone down to the Clubhouse for lunch, we took the usual site tour scenic route via the Sunken Garden and fish pond. Although Hursley is out in the country, seemingly the middle of nowhere, it’s actually on the bus-route from Winchester so we had an excellent turnout of about 30 people. IBM Hursley also has a lot of cool people who do cool things that we can tell people about (although one piece of feedback I heard from a LUG person was that they thought we didn’t talk enough about what IBM does!).<br />
&#8230;</p>
<p>It was a really enjoyable and relaxed day; kudos to Anton, Stephen, and John for organising it from the IBM end. Thanks also to the IBMers who came along and to the many HantsLUG members who turned up. I’d say it was a success and we should definitely do it again.<br />
<a href="http://eightbar.co.uk/2009/09/16/linux-users-descend-on-the-house/">Linux Users descend on the House | eightbar</a></p></blockquote>
<p>The day was terrific (at least for me) and I hope to organise another one in the near future, as it turned out to be nowhere near as hard as I thought it was going to be (I thought it was going to be difficult persuading security etc to let me bring 30 people on site over a weekend when the site only has minimal staff).</p>
<p>Thanks to all those that helped, particularly <a href="http://bluemonki.net/">John Wesley</a> and Stephen Godwin, and also thanks to all those who turned up!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2009/09/16/linux-user-group-hursley/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IBM laying off workers as high profits are posted</title>
		<link>http://www.strangeparty.com/2009/01/26/ibm-laying-off-workers-as-high-profits-are-posted/</link>
		<comments>http://www.strangeparty.com/2009/01/26/ibm-laying-off-workers-as-high-profits-are-posted/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 09:42:32 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[IBM]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/?p=470</guid>
		<description><![CDATA[<p>Research Triangle Park, N.C. — Less than 24 hours after IBM reported profits that far exceeded Wall Street expectations, Big Blue began a series of layoffs across the company in North America on Wednesday. &#8230; There have been rumors of layoffs hitting as many as 16,000 – a number predicted by one Wall Street analyst, <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.strangeparty.com/2009/01/26/ibm-laying-off-workers-as-high-profits-are-posted/">IBM laying off workers as high profits are posted</a></span>]]></description>
			<content:encoded><![CDATA[<blockquote><p>Research Triangle Park, N.C. — Less than 24 hours after IBM reported profits that far exceeded Wall Street expectations, Big Blue began a series of layoffs across the company in North America on Wednesday.<br />
&#8230;<br />
There have been rumors of layoffs hitting as many as 16,000 – a number predicted by one Wall Street analyst, the union and some IBM employees&#8230;</p></blockquote>
<p><a href="http://www.wral.com/business/story/4375560/">IBM begins layoffs, won&#8217;t say how many</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2009/01/26/ibm-laying-off-workers-as-high-profits-are-posted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IBM wins most U.S. patents in 2008</title>
		<link>http://www.strangeparty.com/2009/01/21/ibm-wins-most-us-patents-in-2008/</link>
		<comments>http://www.strangeparty.com/2009/01/21/ibm-wins-most-us-patents-in-2008/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 12:15:08 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[IBM]]></category>
		<category><![CDATA[patent]]></category>
		<category><![CDATA[record]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/?p=464</guid>
		<description><![CDATA[<p>IBM wins most U.S. patents in 2008</p> <p>Reuters &#8211; International Business Machines Corp said on Wednesday it became the first company ever to win more than 4,000 U.S. patents in a single year, citing a new report from research firm IFI Patent Intelligence.</p> <p>Not entirely surprising&#8230; there is huge drive in the labs to submit <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.strangeparty.com/2009/01/21/ibm-wins-most-us-patents-in-2008/">IBM wins most U.S. patents in 2008</a></span>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.reuters.com/article/technologyNews/idUSTRE50D3G020090114?feedType=RSS&amp;feedName=technologyNews">IBM wins most U.S. patents in 2008</a></p>
<blockquote><p>Reuters &#8211; International Business Machines Corp said on Wednesday it became the first company ever to win more than 4,000 U.S. patents in a single year, citing a new report from research firm IFI Patent Intelligence.</p></blockquote>
<p>Not entirely surprising&#8230; there is huge drive in the labs to submit patents</p>
<p>I suspect IBM has had this title for quite a few years.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2009/01/21/ibm-wins-most-us-patents-in-2008/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Monitoring message flow performance with IS02</title>
		<link>http://www.strangeparty.com/2007/10/22/monitoring-message-flow-performance-with-is02/</link>
		<comments>http://www.strangeparty.com/2007/10/22/monitoring-message-flow-performance-with-is02/#comments</comments>
		<pubDate>Mon, 22 Oct 2007 07:41:08 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[IBM]]></category>
		<category><![CDATA[Message Broker]]></category>
		<category><![CDATA[My Job]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/2007/10/22/monitoring-message-flow-performance-with-is02/</guid>
		<description><![CDATA[<p>My DeveloperWorks article on Monitoring message flow performance with the WebSphere Message Broker Explorer Accounting and Statistics facility has finally been published!</p> <p>The new WebSphere Message Broker Accounting and Statistics facility can help you monitor message flow performance and resource usage of a broker or execution group at the message flow, node, or terminal level, <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.strangeparty.com/2007/10/22/monitoring-message-flow-performance-with-is02/">Monitoring message flow performance with IS02</a></span>]]></description>
			<content:encoded><![CDATA[<p>My DeveloperWorks article on <a href="http://www.ibm.com/developerworks/websphere/library/techarticles/0710_piatek/0710_piatek.html">Monitoring message flow performance with the WebSphere Message Broker Explorer Accounting and Statistics facility</a> has finally been published!</p>
<p><em>The new WebSphere Message Broker Accounting and Statistics facility can help you monitor message flow performance and resource usage of a broker or execution group at the message flow, node, or terminal level, and can thus be a tremendous help in solving performance and resource utilization problems.</em><br />
Hopefully you will find it a good starting guide for working with the new Accounting and Statistics views in IS02</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2007/10/22/monitoring-message-flow-performance-with-is02/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>IBM SOA 6.1 range announced</title>
		<link>http://www.strangeparty.com/2007/10/10/ibm-soa-61-range-announced/</link>
		<comments>http://www.strangeparty.com/2007/10/10/ibm-soa-61-range-announced/#comments</comments>
		<pubDate>Wed, 10 Oct 2007 05:50:33 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[Message Broker]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/2007/10/10/ibm-soa-61-range-announced/</guid>
		<description><![CDATA[<p>I had meant all along to blog a little about work, so to reiterate a post from SOA Tips ‘n’ Tricks, the Websphere SOA 6.1 range has been announced by IBM: Websphere Message Broker, WebSphere Enterprise Service Bus, WebSphere Process Server, WebSphere Message Broker, the WebSphere Service Registry and Repository.</p> <p>Full details in the official <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.strangeparty.com/2007/10/10/ibm-soa-61-range-announced/">IBM SOA 6.1 range announced</a></span>]]></description>
			<content:encoded><![CDATA[<p>I had meant all along to blog a little about work, so to reiterate a post from <a href="http://soatipsntricks.wordpress.com/2007/10/09/websphere-soa-61-products-announced/">SOA Tips ‘n’ Tricks</a>, the Websphere SOA 6.1 range has been announced by IBM: Websphere Message Broker, WebSphere Enterprise Service Bus, WebSphere Process Server, WebSphere Message Broker, the WebSphere Service Registry and Repository.</p>
<p><a href="http://www-01.ibm.com/common/ssi/rep_ca/0/897/ENUS207-230/ENUS207230.PDF">Full details in the official release letter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2007/10/10/ibm-soa-61-range-announced/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compiling &#8211; xkcd.com</title>
		<link>http://www.strangeparty.com/2007/08/15/compiling-xkcdcom/</link>
		<comments>http://www.strangeparty.com/2007/08/15/compiling-xkcdcom/#comments</comments>
		<pubDate>Wed, 15 Aug 2007 08:18:27 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[My Job]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/2007/08/15/compiling-xkcdcom/</guid>
		<description><![CDATA[<p> </p> <p>The same is also true for testers: &#8220;My tests are running&#8221;&#8230;</p> ]]></description>
			<content:encoded><![CDATA[<p><a href="http://xkcd.com/303/"> <img src="http://imgs.xkcd.com/comics/compiling.png" title="Compiling" alt="Compiling" height="360" width="413" /></a></p>
<p>The same is also true for testers: &#8220;My tests are running&#8221;&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2007/08/15/compiling-xkcdcom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Broker Explorer (IS02) v3 released</title>
		<link>http://www.strangeparty.com/2007/07/04/broker-explorer-is02-v3-released/</link>
		<comments>http://www.strangeparty.com/2007/07/04/broker-explorer-is02-v3-released/#comments</comments>
		<pubDate>Wed, 04 Jul 2007 10:00:58 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[Message Broker]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/2007/07/04/broker-explorer-is02-v3-released/</guid>
		<description><![CDATA[<p>The support pac is compatible with MQExplorer v602 and above and can be downloaded here</p> <p>It provides a single point for administering your Message Brokers and can be used side by side with your current Message Broker Toolkit. The Broker Explorer (IS02) has the following features&#8230;</p> DataPower Wizard used to configure a DataPower box to <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.strangeparty.com/2007/07/04/broker-explorer-is02-v3-released/">Broker Explorer (IS02) v3 released</a></span>]]></description>
			<content:encoded><![CDATA[<p>The support pac is compatible with MQExplorer v602 and above and can be downloaded  <a href="http://www-1.ibm.com/support/docview.wss?rs=171&amp;uid=swg24012457&amp;loc=en_US&amp;cs=utf-8&amp;lang=en">here</a></p>
<p>It provides a single point for administering your Message Brokers and can be used side by side with your current Message Broker Toolkit.  The Broker Explorer (IS02) has the following features&#8230;</p>
<ul>
<li>DataPower Wizard used to configure a DataPower box to handle WS Security for your HTTP(S) Input Nodes.</li>
<li>Accounting and Statistics charting for graphing your real-time broker statistics.</li>
<li>Small/ lightweight download and installation</li>
<li>Configuration managers viewed under Queue Managers</li>
<li>Ability to connect to remote configuration managers and to show its controlled brokers</li>
<li>Show/ hide configuration managers.</li>
<li>Tidy a configuration managers state preference. (selecting this and then connecting to a configuration manager causes a clean sweep algorithm to attempt to reconcile all brokers known to the configuration manager. Interactively tidying the configuration managers tables. This is off by default but can be turned on in the &#8220;Windows -&gt; preferences -&gt; Broker Explorer&#8221; preference page)</li>
<li>Import/ export v5, v6 *.configmgr files.</li>
<li>Full MQ security configuration manager connection</li>
<li>Addition of flow resources</li>
<li>Show/ hide flow resources</li>
<li></li>
<li>Full &#8220;Event Log&#8221; view support with filtering tied to the MQExplorer selection</li>
<li>Save &#8220;Event Log&#8221; view</li>
<li>Clear &#8220;Event Log&#8221; events</li>
<li>Deploy to multiple execution groups</li>
<li>Double click on a BAR to inspect it</li>
<li>Full service trace controlled from &#8220;Service Trace&#8221; preference pages. (Using AspectJ)</li>
<li>Multi threading with all non UI tasks running in background tasks</li>
<li>Ships with complete working MB documentation.</li>
<li>Ships with EOU Default Configuration Wizard and samples</li>
<li>Brokers state saved between sessions. (Uses EMF model framework persistence)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2007/07/04/broker-explorer-is02-v3-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop the world spinning&#8230;</title>
		<link>http://www.strangeparty.com/2007/07/02/stop-the-world-spinning/</link>
		<comments>http://www.strangeparty.com/2007/07/02/stop-the-world-spinning/#comments</comments>
		<pubDate>Mon, 02 Jul 2007 19:17:34 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Message Broker]]></category>
		<category><![CDATA[My Job]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/2007/07/02/stop-the-world-spinning/</guid>
		<description><![CDATA[<p>I have been so busy recently that I have not had time to post (again!). A few weeks ago I changed departments at work again, and am back in development though now the functional test department has merged with development, so I have been testing for the last few weeks. This means I am up <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.strangeparty.com/2007/07/02/stop-the-world-spinning/">Stop the world spinning&#8230;</a></span>]]></description>
			<content:encoded><![CDATA[<p>I have been so busy recently that I have not had time to post (again!). A few weeks ago I changed departments at work again, and am back in development though now the functional test department has merged with development, so I have been testing for the last few weeks. This means I am up to my neck in perl modules. It has been fun, and quite a learning experience. Unfortunately I have found several defects in the perl automation libraries, which really slow down my work.  I have also started to use zOS, and it is quite different from anything I have used before. Thankfull I am using USS (Unix System Services) most of the time, so can find my way around that, but sometimes I have to use the real zOS interface, and that is rather tricky when you have no idea what you are doing.</p>
<p>I have also become the server admin for an internal Debian repository at work, which supplies several essential internal packges all sorted out to install on Debian nicely &#8211; this can be a challenge to achieve sometimes. I am doing some packaging too, which is fun but has been another long learning experience &#8211; I always though Debian packges were  lot simpler than they really are.</p>
<p>On Saturday I was up in London for the WildChild dance festival, which was moved from Shoreditch Park to Kings Cross freight yards (home of the keys, the cross and canvas) which was just as well as it was a really wet day. The day was really good, lots of great music though the rooms (of which there must have been 8 or 10) varied in terms of size, neatness and amounts of lighting. The only regret was that somehow I missed Dogzilla &#8211; we were in the right room at the right time, but no mention of them&#8230;</p>
<p>On the way back from London the train got stuck outside Winchester while the Police armed response unit was called for a security incident on the train at winchester station. Strangely the conductor called smokers to the back of the train and allowed people to stand in the back drivers cab with the windows open and smoke, while he was at the other end of the train. This is more strange because the next morning smoking is banned in all enclosed public spaces in England, and smoking on trains has not been permitted for several years (I can&#8217;t remember it happening, though I can remember smoking on planes).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2007/07/02/stop-the-world-spinning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The future of games &#8211; user created content</title>
		<link>http://www.strangeparty.com/2007/05/08/the-future-of-games-user-created-content/</link>
		<comments>http://www.strangeparty.com/2007/05/08/the-future-of-games-user-created-content/#comments</comments>
		<pubDate>Tue, 08 May 2007 17:52:34 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/2007/05/08/the-future-of-games-user-created-content/</guid>
		<description><![CDATA[<p>At work at Hursley there is an annual event organised called Hursley Techincal Exchange (HTX). It aims to inform the lab about some of the new technology being developed both inside IBM and in the rest of the world. I went to one talk today which was mostly about the Cell Processor and other &#8220;next <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.strangeparty.com/2007/05/08/the-future-of-games-user-created-content/">The future of games &#8211; user created content</a></span>]]></description>
			<content:encoded><![CDATA[<p>At work at Hursley there is an annual event organised called Hursley Techincal Exchange (HTX). It aims to inform the lab about some of the new technology being developed both inside IBM and in the rest of the world. I went to one talk today which was mostly about the Cell Processor and other &#8220;next gen&#8221; (well, current gen now) consoles. It gave some background on the hardware architecture of the top 3 consoles, but specifically looked at the PS3. At the end was a video from a demo of a new game being developed for the PS3, called <a href="http://www.mediamolecule.com/games.html">Little Big Planet</a></p>
<p>The video below gives an idea what the game can do, but the basic idea is that all the objects and levels are easily user created. It is quite a demo of what the Cell processor can do as a complex physics engine</p>
<ul>
<li><a href="http://www.youtube.com/watch?v=NI5JmcQv3n4">little big planet (part 1)</a></li>
<li><a href="http://www.youtube.com/watch?v=jOpc9Z6pKSg">little big planet (part 2)</a></li>
</ul>
<p>It also reminded me about <a href="http://www.spore.com/">Spore</a>, which is also based around the idea of user created content. Not the levels, but the creatures within the game are all either randomly generated by the computer or pulled down via the internet from another players computer, giving some truly interesting characters. The big idea in Spore is that however your creature is designed it will develop a unique way of walking, using tools, eating etc. The videos give a better idea (The long demo will take a while to watch, but is definitely worth it!)</p>
<ul>
<li><a href="http://www.youtube.com/watch?v=WHaulHxmO4A">spore (quick demo)</a></li>
<li><a href="http://www.youtube.com/watch?v=T8dvMDFOFnA">spore (full demo)</a></li>
<li><a href="http://www.youtube.com/watch?v=V5TXEUiR1Xk">robin williams playing spore</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2007/05/08/the-future-of-games-user-created-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Red Hat education</title>
		<link>http://www.strangeparty.com/2007/04/30/red-hat-education/</link>
		<comments>http://www.strangeparty.com/2007/04/30/red-hat-education/#comments</comments>
		<pubDate>Mon, 30 Apr 2007 07:44:29 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[My Job]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/2007/04/30/red-hat-education/</guid>
		<description><![CDATA[<p>I spent all of last week on the Red Hat Rapid Training and Certification course trying to learn more about linux.</p> <p>I certainly learnt a hell of a lot, and the 4 day course was a lot of work and very tiring. The exam however made all that seem relaxing. I have never sat a <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.strangeparty.com/2007/04/30/red-hat-education/">Red Hat education</a></span>]]></description>
			<content:encoded><![CDATA[<p>I spent all of last week on the Red Hat Rapid Training and Certification course trying to learn more about linux.</p>
<p>I certainly learnt a hell of a lot, and the 4 day course was a lot of work and very tiring. The exam however made all that seem relaxing. I have never sat a full day exam before, and it is not exactly a peacful exercise. Unfortunately I cannot say much about the exam as I have signed a non-disclosure agreement about it, but parts were easy and some parts were hard.</p>
<p>As it turns out some parts were very hard as I did not get enough marks to qualify for Red Hat Certified Engineer (RHCE) &#8211; I did get enough for <a href="https://www.redhat.com/training/certification/verify/?rhce_cert_display:certno=605007739012806&amp;rhce_cert_display:verify_cb=Verify">Red Hat Certified Technician (RHCT)</a>.</p>
<p>I am really a Debian user at heart, but the Red Hat course showed how similar the two can be, though there are certain parts that have differences. The biggest difference is probably that when you install a new server program/package in Debian, it comes with a fairly normal config file and starts up running. In Red Hat the config will be fairly restrictive and the service will not be started for you, nor will it be set to restart on reboot.</p>
<p>I have no plans to move away from Debian though, but the Red Hat experience was really informative and the course certainly got me setting up things I would probably never have done otherwise&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2007/04/30/red-hat-education/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IS02 v2 released (inc. stats and accounting viewer)</title>
		<link>http://www.strangeparty.com/2007/03/26/is02-v2-released-inc-stats-and-accounting-viewer/</link>
		<comments>http://www.strangeparty.com/2007/03/26/is02-v2-released-inc-stats-and-accounting-viewer/#comments</comments>
		<pubDate>Mon, 26 Mar 2007 07:35:52 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[IBM]]></category>
		<category><![CDATA[Message Broker]]></category>
		<category><![CDATA[My Job]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/2007/03/26/is02-v2-released-inc-stats-and-accounting-viewer/</guid>
		<description><![CDATA[<p>The extra project I had been working on before christmas has finally been approved and is released! The IS02 Broker Explorer support pack (v2) contains a whole pile of new features, including:</p> Control of remote brokers/config managers Association of a broker with a config manager (local or remote) Deploying a bar file (broker archive) to <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.strangeparty.com/2007/03/26/is02-v2-released-inc-stats-and-accounting-viewer/">IS02 v2 released (inc. stats and accounting viewer)</a></span>]]></description>
			<content:encoded><![CDATA[<p>The extra project I had been working on before christmas has finally been approved and is released!  The IS02 Broker Explorer support pack (v2) contains a whole pile of new features, including:</p>
<blockquote>
<ul>
<li>  Control of remote brokers/config managers</li>
<li>Association of a broker with a config manager (local or remote)</li>
<li>Deploying a bar file (broker archive) to multiple execution groups at once</li>
<li>Viweing of accounting and statistics data, as well as remote control of accounting and statistics collection (snapshot data)</li>
</ul>
</blockquote>
<p>It is available for download from the IBM Support Website, and has now been released as a category 2 support pack, which means support for it is available from IBM.<a href="http://www-1.ibm.com/support/docview.wss?rs=171&amp;uid=swg24012457&amp;loc=en_US&amp;cs=utf-8&amp;lang=en"><br />
</a></p>
<p><a href="http://www-1.ibm.com/support/docview.wss?rs=171&amp;uid=swg24012457&amp;loc=en_US&amp;cs=utf-8&amp;lang=en">http://www-1.ibm.com/support/docview.wss?rs=171&amp;uid=swg24012457&amp;loc=en_US&amp;cs=utf-8〈=en </a></p>
<p>There should be a Developer Works article on it soon, I will let you know when it has been published!</p>
<p>[ <em> Let me know what you think of the stats and accounting bit, as that is my code <img src='http://www.strangeparty.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </em>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2007/03/26/is02-v2-released-inc-stats-and-accounting-viewer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BlueFusion 2007 &#8211; Done!</title>
		<link>http://www.strangeparty.com/2007/03/18/bluefusion-2007-done/</link>
		<comments>http://www.strangeparty.com/2007/03/18/bluefusion-2007-done/#comments</comments>
		<pubDate>Sun, 18 Mar 2007 13:12:46 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[Blue Fusion]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/2007/03/18/bluefusion-2007-done/</guid>
		<description><![CDATA[<p>Thursday was the last day of this years Blue Fusion event. Friday was clearing and packing up, and the whole week even has left me quite exhausted. I will try and write a few posts to cover the activities we ran, but most of my time will be spent catching up with my day job <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.strangeparty.com/2007/03/18/bluefusion-2007-done/">BlueFusion 2007 &#8211; Done!</a></span>]]></description>
			<content:encoded><![CDATA[<p>Thursday was the last day of this years Blue Fusion event. Friday was clearing and packing up, and the whole week even has left me quite exhausted. I will try and write a few posts to cover the activities we ran, but most of my time will be spent catching up with my day job and preparing to hand over the running of Blue Fusion to the new leads team, which will be chosen over the next few months from the recent graduates to Hursley who organised this years event. There were a lot of things we needed to know about this year- but didn&#8217;t, and I hope to make sure that we write all that down for next year&#8217;s team so that they have it a bit easier.</p>
<p>All in all I really enjoyed managing the event, and would probably consider doing it again if I were asked. Next year I think I might get involved with the development of an activity, possibly a computer based one&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2007/03/18/bluefusion-2007-done/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bright Sparks</title>
		<link>http://www.strangeparty.com/2007/03/11/bright-sparks/</link>
		<comments>http://www.strangeparty.com/2007/03/11/bright-sparks/#comments</comments>
		<pubDate>Sun, 11 Mar 2007 19:32:44 +0000</pubDate>
		<dc:creator>Anton Piatek</dc:creator>
				<category><![CDATA[Blue Fusion]]></category>

		<guid isPermaLink="false">http://www.strangeparty.com/2007/03/11/bright-sparks/</guid>
		<description><![CDATA[<p>After spending 11 hours at work on Thursday setting up everything for Bright Sparks and Blue Fusion, the first day of the event (Bright Sparks) for the year eight age group occured on Friday. The day had a bit of a bumpy start with everything just pulling together in time, but once the ball started <span style="color:#777"> . . . &#8594; Read More: <a href="http://www.strangeparty.com/2007/03/11/bright-sparks/">Bright Sparks</a></span>]]></description>
			<content:encoded><![CDATA[<p>After spending 11 hours at work on Thursday setting up everything for <a href="http://www-05.ibm.com/employment/uk/hursleycommunity/bluefusion/bright_sparks.html">Bright Sparks</a> and <a href="http://www-05.ibm.com/employment/uk/hursleycommunity/bluefusion/blue_fusion.html">Blue Fusion</a>, the first day of the event (Bright Sparks) for the year eight age group occured on Friday. The day had a bit of a bumpy start with everything just pulling together in time, but once the ball started rolling the rest of the day flowed like clockwork.</p>
<p>Blue Fusion (previously known as Young Visions) attempts to inspire children about Science, Technology and Engineering and is run during <a href="http://www.the-ba.net/the-ba/Events/NSEW/index.html">National Science and Engineering week</a>. The event is run be recent graduates to IBM Hursley, with 5 of the previous years graduates making the lead team and twenty most recent graduates making the rest of the organising team. The event is run during the week by around 200 volunteers from all over IBM UK, and we have 80 schools, each bringing six children over the week.</p>
<p>Each year develops new activites to be used during the event, and many of the activities are reused for other events in IBM like Bring Your Child to Work Day, and University Challange (previously known as Thinkpad Challenge). We have six new activites this year, and I will hopefully get the chance to describe some of them in depth later.</p>
<p>I will put up some photos later, but for now just wanted to warn you that most posts over the next week will be Blue Fusion related.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangeparty.com/2007/03/11/bright-sparks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

