<?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>Technical stuff &#187; Software</title>
	<atom:link href="http://www.tekkie.ro/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tekkie.ro</link>
	<description>Requirements are like water. They&#039;re easier to build on when they&#039;re frozen.</description>
	<lastBuildDate>Fri, 11 Jun 2010 11:33:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Download Curl library for CodeIgniter, ported to Kohana</title>
		<link>http://www.tekkie.ro/software/download-curl-library-for-codeigniter-ported-to-kohana/</link>
		<comments>http://www.tekkie.ro/software/download-curl-library-for-codeigniter-ported-to-kohana/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 07:14:56 +0000</pubDate>
		<dc:creator>Georgiana</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[Kohana]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.tekkie.ro/?p=209</guid>
		<description><![CDATA[I&#8217;ve ported the Curl library to Kohana, with kind permission of Alex Polski.
You can download it here: ported to Kohana.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve ported the Curl library to Kohana, with kind permission of <a title="Alex Polski" href="http://alexpolski.com/">Alex Polski</a>.</p>
<p>You can download it here: <a title="download Curl for Kohana" href="http://www.tekkie.ro/wp-content/uploads/2009/07/Curl.phps">ported to Kohana</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tekkie.ro/software/download-curl-library-for-codeigniter-ported-to-kohana/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forced to develop on Windows? Need a better Putty?</title>
		<link>http://www.tekkie.ro/software/forced-to-develop-on-windows-need-a-better-putty/</link>
		<comments>http://www.tekkie.ro/software/forced-to-develop-on-windows-need-a-better-putty/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 15:53:22 +0000</pubDate>
		<dc:creator>Georgiana</dc:creator>
				<category><![CDATA[Quick and dirty]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[quickies]]></category>

		<guid isPermaLink="false">http://www.tekkie.ro/?p=206</guid>
		<description><![CDATA[I first used Putty Tray. But today I found a tabbed version, the Putty Connection Manager.
Both do get minimized in the taskbar, isn&#8217;t this cool?
]]></description>
			<content:encoded><![CDATA[<p>I first used <a title="Putty Tray" href="http://haanstra.eu/putty/">Putty Tray</a>. But today I found a tabbed version, the <a title="Putty Connection Manager" href="http://puttycm.free.fr/">Putty Connection Manager</a>.</p>
<p>Both do get minimized in the taskbar, isn&#8217;t this cool?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tekkie.ro/software/forced-to-develop-on-windows-need-a-better-putty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mySQL: find out distinct values of a column and the number of their occurrences</title>
		<link>http://www.tekkie.ro/software/mysql-find-out-distinct-values-column-number-their-occurrences/</link>
		<comments>http://www.tekkie.ro/software/mysql-find-out-distinct-values-column-number-their-occurrences/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 12:33:05 +0000</pubDate>
		<dc:creator>Georgiana</dc:creator>
				<category><![CDATA[Quick and dirty]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[mySQL]]></category>
		<category><![CDATA[quickies]]></category>

		<guid isPermaLink="false">http://www.tekkie.ro/?p=178</guid>
		<description><![CDATA[So, we need to find out different values of a column and the number of their occurrences. Let&#8217;s set up a small test first:

-- Step #1: prepare the ground
CREATE DATABASE IF NOT EXISTS `test`;

DROP TABLE IF EXISTS `test`.`test_count_distinct`;

CREATE TABLE `test`.`test_count_distinct` (
  `id` INT(11) NOT NULL auto_increment
      PRIMARY KEY,
  [...]]]></description>
			<content:encoded><![CDATA[<p>So, we need to find out different values of a column and the number of their occurrences. Let&#8217;s set up a small test first:</p>
<pre class="brush: sql">
-- Step #1: prepare the ground
CREATE DATABASE IF NOT EXISTS `test`;

DROP TABLE IF EXISTS `test`.`test_count_distinct`;

CREATE TABLE `test`.`test_count_distinct` (
  `id` INT(11) NOT NULL auto_increment
      PRIMARY KEY,
  `title` VARCHAR(50) NOT NULL DEFAULT &#039;&#039;,
  `date_created` TIMESTAMP NOT NULL DEFAULT 0,
  `date_updated` TIMESTAMP NOT NULL
      DEFAULT CURRENT_TIMESTAMP
      ON UPDATE CURRENT_TIMESTAMP
);

-- using NULL insert for a timestamp column is
--    just like using NOW()
-- @link http://dev.mysql.com/doc/refman/4.1/en/timestamp.html
INSERT INTO `test`.`test_count_distinct` ( `title`, `date_created` )
VALUES
  ( &#039;value&#039;,   NULL )
, ( &#039;value 1&#039;, NULL )
, ( &#039;value 2&#039;, NULL )
, ( &#039;value&#039;,   NULL )
, ( &#039;value 1&#039;, NULL )
, ( &#039;value 2&#039;, NULL )
, ( &#039;value&#039;,   NULL )
, ( &#039;value 3&#039;, NULL )
;
</pre>
<p>Now let&#8217;s find out how many different values are there in the `title` column, and how many times each value occurs:</p>
<pre class="brush: sql">
-- Step #2: do work
--          here is where we find out
--          different values of `title` and
--          the number of their occurrences
SELECT
        DISTINCT `t`.`title` AS `title`,
        COUNT( `t`.`title`) AS `cnt`
    FROM `test`.`test_count_distinct` t
    GROUP BY `title`
    ORDER BY `cnt` DESC
;
</pre>
<p>And the result will look like:</p>
<pre class="brush: sql">
+---------+-----+
| title   | cnt |
+---------+-----+
| value   |   3 |
| value 2 |   2 |
| value 1 |   2 |
| value 3 |   1 |
+---------+-----+
4 rows in set (0.00 sec)
</pre>
<p>You can get the code <a href="http://www.tekkie.ro/wp-content/uploads/2009/06/count_distinct.sql" title="mySQL code for count distinct test">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tekkie.ro/software/mysql-find-out-distinct-values-column-number-their-occurrences/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Presentations &#8211; the wow factor</title>
		<link>http://www.tekkie.ro/software/presentations-the-wow-factor/</link>
		<comments>http://www.tekkie.ro/software/presentations-the-wow-factor/#comments</comments>
		<pubDate>Thu, 14 May 2009 18:20:12 +0000</pubDate>
		<dc:creator>Georgiana</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[online application]]></category>
		<category><![CDATA[presentation]]></category>

		<guid isPermaLink="false">http://www.tekkie.ro/?p=155</guid>
		<description><![CDATA[We all have to make a presentation sooner or later. But it&#8217;s not easy, and there are a lot of hints, advices or tips &#38; tricks to help you in this process. But all assume you&#8217;re using something similar to Powerpoint. They all teach you how to create and present the content, very few show [...]]]></description>
			<content:encoded><![CDATA[<p>We all have to make a presentation sooner or later. But it&#8217;s not easy, and there are a lot of hints, advices or tips &amp; tricks to help you in this process. But all assume you&#8217;re using something similar to Powerpoint. They all teach you how to create and present the content, very few show you how to present it in a way for the others to remember. That&#8217;s why I recommend you try <a title="Prezi - the zooming presentation editor" href="http://www.prezi.com/">Prezi.com</a>, to make your presentation unique. If you don&#8217;t believe me, <a title="Try &amp; learn the Prezi editor online" href="http://prezi.com/prezi/27/try/">take a quick look</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tekkie.ro/software/presentations-the-wow-factor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How do I run IE6 and IE7 (even IE8) together on the same machine?</title>
		<link>http://www.tekkie.ro/software/how-do-i-run-ie6-ie7-together-same-machine/</link>
		<comments>http://www.tekkie.ro/software/how-do-i-run-ie6-ie7-together-same-machine/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 15:27:35 +0000</pubDate>
		<dc:creator>Georgiana</dc:creator>
				<category><![CDATA[Quick and dirty]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[quickies]]></category>

		<guid isPermaLink="false">http://www.tekkie.ro/?p=98</guid>
		<description><![CDATA[There are explained several options one has when trying to run IE6 and IE7 on the same machine.]]></description>
			<content:encoded><![CDATA[<p>This is a very common issue among us, developers or testers of web applications, so I will explain here exactly what worked for me, along with other solutions which have proved useful for others in the past.</p>
<p>After trying the various solutions on the internet, I learnt that the simple is the best.</p>
<ol>
<li><span style="text-decoration: underline;">IE6 standalone install</span> (best choice)
<ul>
<li>download the <a title="IE6 standalone kit: download page on evolt.org" href="http://browsers.evolt.org/download.php?/ie/32bit/standalone/ie6eolas_nt.zip">IE6 standalone kit</a> from evolt.org</li>
<li>unpack the archive in a convenient place on your computer; be careful to keep all the files into the same directory</li>
<li>create a shortcut to iexplore.exe either on the desktop or in the QuickLaunch bar</li>
<li>Congratulations, you&#8217;re done!</li>
</ul>
<ul>
<li>please note that until IE8 is a stable release and gains a small market share I am not interested in testing web apps for it, so this is the reason I chose this solution to be the best one for me</li>
</ul>
</li>
<li><span style="text-decoration: underline;">Use Internet Explorer Collection</span>
<ul>
<li>download the <a title="Internet Explorer Collection 1.1.0.1 kit" href="http://codecpack.nl/iecollection1101.exe">IE Collection kit</a> (note: at the time of this writing, the IE Collection has 42.4 MB, and has reached 1.1.0.1);</li>
<li>this package contains various versions of IE:
<ul>
<li>Internet Explorer 8.0 (8.0.6001.18241)</li>
<li>Internet Explorer 7.0 (7.0.5730.13)</li>
<li>Internet Explorer 6.0 (6.00.2800.1106)</li>
<li>Internet Explorer 5.5 (5.51.4807.2300)</li>
<li>Internet Explorer 5.01 (5.00.3314.2100)</li>
<li>Internet Explorer 4.01 (4.72.3110.0)</li>
<li>Internet Explorer 3.0 (3.0.1152)</li>
<li>Internet Explorer 2.01 (2.1.0.46)</li>
<li>Internet Explorer 1.5 (0.1.0.10)</li>
<li>Internet Explorer 1.0 (4.40.0.308)</li>
</ul>
</li>
<li>choose the version of IE you want to install</li>
<li>All set up!</li>
</ul>
<ul>
<li>please note that this solution does not work with Microsoft Vista</li>
</ul>
</li>
<li><span style="text-decoration: underline;">Use IETester</span>
<ul>
<li>download the <a title="IETester kit download link" href="http://www.my-debugbar.com/ietester/install-ietester-v0.2.3.exe">IETester kit</a> from the <a title="IETester page @ My DebugBar" href="http://www.my-debugbar.com/wiki/IETester/HomePage">My DebugBar page</a> (note: at the time of this writing the kit has reached version 0.2.3 and has 24 MB)</li>
<li>please note that you need to have Windows Vista or Windows XP with IE7 installed if you choose this solution (ithese 2 are the configurations known to work)</li>
<li>install it and you&#8217;re ready to go!</li>
</ul>
<div></div>
<div>Happy coding / testing!</div>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.tekkie.ro/software/how-do-i-run-ie6-ie7-together-same-machine/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Google Chrome issues</title>
		<link>http://www.tekkie.ro/software/google-chrome-issues/</link>
		<comments>http://www.tekkie.ro/software/google-chrome-issues/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 18:48:08 +0000</pubDate>
		<dc:creator>Georgiana</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.tekkie.ro/?p=13</guid>
		<description><![CDATA[Google Chrome not implemented issues, problems and errors]]></description>
			<content:encoded><![CDATA[<p>First bugs have appeared in Chrome. Ok, it&#8217;s still a beta release, but you should be aware that:</p>
<ul>
<li>it doesn&#8217;t love youtube videos</li>
<li>suddenly and unexpectedly crashes with no particular reason, after normal browsing</li>
<li>it is unable to render XML files properly</li>
</ul>

<a href="http://www.tekkie.ro/wp-content/gallery/bugs-screenshots/2008-09-09_chrome-crash.jpg" title="" class="thickbox" rel="singlepic1" >
	<img class="ngg-singlepic" src="http://www.tekkie.ro/index.php?callback=image&amp;pid=1&amp;width=320&amp;height=240&amp;mode=" alt="2008-09-09_chrome-crash.jpg" title="2008-09-09_chrome-crash.jpg" />
</a>

<ul>
<li>doesn&#8217;t remember the last session tabs</li>
</ul>
<div>&#8230; will be continued.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.tekkie.ro/software/google-chrome-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
