<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>banjora [auxilium]</title>
	<link>http://www.banjora.com</link>
	<description>› entrepreneurial</description>
	<pubDate>Sat, 10 May 2008 02:14:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>Blocking Executables from an Oracle DB</title>
		<link>http://www.banjora.com/2008/02/16/blocking-exe-from-oracle/</link>
		<comments>http://www.banjora.com/2008/02/16/blocking-exe-from-oracle/#comments</comments>
		<pubDate>Sat, 16 Feb 2008 19:00:29 +0000</pubDate>
		<dc:creator>Pavel L. Descoteaux</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[3rd party tools]]></category>

		<category><![CDATA[block]]></category>

		<category><![CDATA[block executables]]></category>

		<category><![CDATA[database]]></category>

		<category><![CDATA[exe]]></category>

		<category><![CDATA[odbc]]></category>

		<category><![CDATA[oracle]]></category>

		<category><![CDATA[oracle database]]></category>

		<category><![CDATA[plsql]]></category>

		<category><![CDATA[toad]]></category>

		<category><![CDATA[trigger]]></category>

		<guid isPermaLink="false">http://www.banjora.com/2008/02/16/blocking-exe-from-oracle/</guid>
		<description><![CDATA[

Building upon the generous contributions of the Oracle community, this database trigger was designed to provide companies with SOX and ICE related information regarding any 3rd party tool&#8217;s access to a given database.

The trigger is designed to restrict access to only the &#8216;allowable&#8217; programmes, and then validates the session information against specified Windows/Linux/Unix accounts. Additionally, [...]]]></description>
			<content:encoded><![CDATA[<p><span>
<p align="justify">
<a target="_self" href="http://www.banjora.com/2008/02/16/blocking-exe-from-oracle/"><img src="http://www.banjora.com/wp-content/uploads/2008/02/oracle-security.jpg" align="right" width="150" height="95" border="0" alt="Blocking Executables from an Oracle DB" /></a>Building upon the generous contributions of the Oracle community, this database trigger was designed to provide companies with SOX and ICE related information regarding any 3rd party tool&#8217;s access to a given database.
</p>
<p align="justify">The trigger is designed to restrict access to only the &#8216;allowable&#8217; programmes, and then validates the session information against specified Windows/Linux/Unix accounts. Additionally, if the executable is renamed in an attempt to disguise the programme, the trigger will not be able to identify the executable and immediately terminate the user&#8217;s session. If the database account has &#8216;admin&#8217; options, the trigger will not terminate the session, but will record the session in an audit table, along with broadcasting an email with the connection information.
</p>
<ul>
<li>All standard executables have an &#8216;A&#8217; flag status and allows the programme to run unchecked</li>
<li>All &#8216;C&#8217; flagged programmes are checked against the user&#8217;s Windows/Linux account to validate if this user is authorized to connect with an identified programme</li>
</ul>
<p align="justify">The database trigger basically identifies the session&#8217;s programme executable, and then validates the value against a list of values that resides within the OMON_TOOLPRIV_HDR and OMON_TOOLPRIV_DTL tables respectively.</p>
<ul>
<li>If the session&#8217;s programme is allowed, no action is taken</li>
<li>If the session&#8217;s programme is to be validated, it checks the session information against maintained information (programme and Window/Linux account)</li>
<ul>
<li>If the checked programme is not allowed, it performs the following:</li>
<ul>
<li>Records the session information in an audit table</li>
<li>Sends an email to identified recipients, with the session information and action taken</li>
<li>Records the attempt and session information in the Oracle Alertlog</li>
<li>Immediately terminates the user&#8217;s session</li>
</ul>
<li>If the checked programme is validated and allowed, it performs the following:</li>
<ul>
<li>Records the session information in an audit table</li>
<li>Sends an email to identified recipients, with the session information and action taken</li>
<li>Records the attempt and session information in the Oracle Alertlog</li>
</ul>
</ul>
</ul>
<p align="justify">The rollout of this trigger and the account security maintenance is very simplistic, and is designed to reduce it&#8217;s footprint on the database by keeping most of the objects in a separate tablespace.</p>
<p align="justify">&nbsp;</p>
<p align="justify"><b><font size="4"><font color="#ADBEEC">Step 1:</font></font></b> Create a tablespace for the table and index objects to reside. All of the objects can be created with the SYSDBA account, as the only the trigger is recommended to reside in the SYS schema.
<p align="left">
<iframe src="http://www.banjora.com/wp-content/uploads/2008/02/create_oramon_tablespace.htm" height="230" width="450" name="create_oramon_tablespace" align="middle" style="border-style: ridge; border-width: 1px; "></iframe></p>
<p align="justify">&nbsp;</p>
<p align="justify"><b><font size="4"><font color="#ADBEEC">Step 2:</font></font></b> Create the Email header and detail tables for the recipients</p>
<p align="left">
<iframe src="http://www.banjora.com/wp-content/uploads/2008/02/create_oramon_emaillist.htm" height="975" width="450" name="create_oramon_emaillist" align="middle" style="border-style: ridge; border-width: 1px; "></iframe></p>
<p align="justify">&nbsp;</p>
<p align="justify"><b><font size="4"><font color="#ADBEEC">Step 3:</font></font></b> Create the Tool Privilege header and detail tables for the executables and accounts that are authorized to run the executables</p>
<p align="left">
<iframe src="http://www.banjora.com/wp-content/uploads/2008/02/create_oramon_toolpriv.htm" height="1075" width="450" name="create_oramon_toolpriv" align="middle" style="border-style: ridge; border-width: 1px; "></iframe></p>
<p align="justify">&nbsp;</p>
<p align="justify"><b><font size="4"><font color="#ADBEEC">Step 4:</font></font></b> Create the audit table for recording all &#8216;validated&#8217; or offending programmes</p>
<p align="left">
<iframe src="http://www.banjora.com/wp-content/uploads/2008/02/create_oramon_toolprivaud.htm" height="365" width="450" name="create_oramon_toolprivaud" align="middle" style="border-style: ridge; border-width: 1px; "></iframe></p>
<p align="justify">&nbsp;</p>
<p align="justify"><b><font size="4"><font color="#ADBEEC">Step 5:</font></font></b> Create the database trigger that will perform all the needed tasks. It is preferred that this trigger is created and managed by the SYSDBA account.</p>
<p align="left">
<iframe src="http://www.banjora.com/wp-content/uploads/2008/02/tr_smtp_oratools_conn.htm" height="4125" width="450" name="tr_smtp_oratools_conn" align="middle" style="border-style: ridge; border-width: 1px; "></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.banjora.com/2008/02/16/blocking-exe-from-oracle/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Entrepreneurs benefit with Linkedin&#8230;</title>
		<link>http://www.banjora.com/2007/12/30/linkedin/</link>
		<comments>http://www.banjora.com/2007/12/30/linkedin/#comments</comments>
		<pubDate>Mon, 31 Dec 2007 02:26:49 +0000</pubDate>
		<dc:creator>Pavel L. Descoteaux</dc:creator>
		
		<category><![CDATA[Informational]]></category>

		<category><![CDATA[Entrepreneurs]]></category>

		<category><![CDATA[Linkedin]]></category>

		<guid isPermaLink="false">http://www.banjora.com/2007/12/30/linkedin/</guid>
		<description><![CDATA[

Why get LinkedIn? Well, for starters, LinkedIn is the creator of the world’s largest and most effective business network. With more than five hundred of the Fortune 500 companies deployed, this establishes them as a leader in the recruiting and sourcing of passive job candidates. With more than four million members in North America, more [...]]]></description>
			<content:encoded><![CDATA[<p><span>
<p align="justify">
<a target="_blank" href="http://www.linkedin.com/in/pldescoteaux"><img src="http://www.linkedin.com/img/webpromo/btn_myprofile_160x33.gif" align="left" width="160" height="33" border="0" alt="View Pavel Descoteaux's profile on LinkedIn" /></a>Why get <a title="LinkedIn" target="_blank" href="http://www.linkedin.com/">LinkedIn</a>? Well, for starters, LinkedIn is the creator of the world’s largest and most effective business network. With more than five hundred of the Fortune 500 companies deployed, this establishes them as a leader in the recruiting and sourcing of passive job candidates. With more than four million members in North America, more than three million in Europe, and a million-plus in Asia, these companies have adopted LinkedIn Corporate Solutions across their staffing and recruiting organizations and pay between $10,000 and $250,000 annually for subscriptions, which include access to the LinkedIn network of over 8.5 million professionals, enhanced search and communication capabilities, as well as job listing packages.</p>
<p align="justify">So, as an Entrepreneur, what does LinkedIn bring to the table?. It is built upon trusted connections and relationships, and is conceivably the biggest gathering of professionals and entrepreneurs seen at a global level. It is like a virtual &#8216;Chamber of Commerce&#8217; open for anyone to join, without any bias or restrictions on anyone wanting to tap the opportunities it potentially offers. LinkedIn takes your personal business network online, giving you access to people, jobs and opportunities like never before. With more than four million members in North America, more than three million in Europe, and a million-plus in Asia, it provides entrepreneurs use of social networking tools for marketing and recruiting purposes.
</p>
<p align="justify">But LinkedIn is only as good as you want it to be, and it&#8217;s effectiveness is only as much as the user can get out of it. Although regarded as the gold standard in professional networking and social interactions, it is primarily a place to do business at a global scale. It follows the principles of traditional networking in the virtual world, and makes many more people covering a broad spectrum of profiles accessible to one another.
</p>
<p>How can it work for you? How about&#8230;</p>
<ul>
<li>An Ever Expanding Rolodex</li>
<li>Finding People And Staying In Touch</li>
<li>Hiring People</li>
<li>Selling &amp; Brand Building</li>
<li>Branding &amp; Marketing Yourself</li>
<li>Finding A Job</li>
<li>Finding Vendors And Service Providers</li>
<li>Background Checks On People</li>
<li>Entrepreneurs: Get Opinions &amp; Investors</li>
<li>Linkedin Answers: A Global Focus Group</li>
</ul>
<p>&nbsp;</p>
<p><span style="color: #ADBEEC; font-weight:700">LINKEDIN ACCOUNT LEVELS:</span></p>
<p>LinkedIn offers <strong><u><font color="#ADBEEC">free personal accounts</font></u></strong> with robust features, including the ability to:</p>
<ul>
<li>Build and maintain a trusted professional network of unlimited size </li>
<li>Find and reconnect with colleagues and classmates </li>
<li>Request and provide recommendations </li>
<li>Create a professional presence on the web </li>
<li>Request up to 5 Introductions at a time </li>
<li>Search for and view profiles of other LinkedIn users </li>
</ul>
<p align="justify">&nbsp;</p>
<p align="justify">Besides the free basic account, LinkedIn also offers a variety of premium accounts that give you more ways to reach or be reached by the right people on LinkedIn – including better communication, more powerful search tools, and enhanced access to decision makers and other resources on LinkedIn.
</p>
<p><font color="#ADBEEC"><u><strong>Personal Plus</strong></u></font> accounts cost $60 per year. This includes:</p>
<ul>
<li>10 Introductions open at a time </li>
<li>OpenLink Network membership </li>
<li>Unlimited OpenLink messages </li>
<li>Premium Access content </li>
<li>One-business-day Customer Service </li>
</ul>
<p>&nbsp;</p>
<p><font color="#ADBEEC"><u><strong>Business</strong></u></font> accounts cost $19.95 per month or $199.50 per year. This includes:</p>
<ul>
<li>3 InMails per month, with a seven-day response guarantee
<div style="padding-left: 15px">- Unused InMail credits roll over each month, up to a maximum of nine</div>
</li>
<li>Expanded Profile views for the top 100 search results outside your network </li>
<li>15 Introductions open at a time </li>
<li>Unlimited one-click reference searches </li>
<li>OpenLink Network membership </li>
<li>Unlimited OpenLink messages </li>
<li>Premium Access content </li>
<li>One-business-day Customer Service </li>
</ul>
<p>&nbsp;</p>
<p><font color="#ADBEEC"><u><strong>Business Plus</strong></u></font> accounts cost $50 per month or $500 per year. This includes:</p>
<ul>
<li>10 InMails per month, with a seven-day response guarantee
<div style="padding-left: 15px">- Unused InMail credits roll over each month, up to a maximum of 30</div>
</li>
<li>Expanded profile views for the top 150 search results outside your network </li>
<li>25 Introductions open at a time </li>
<li>Unlimited one-click reference searches </li>
<li>OpenLink Network membership </li>
<li>Unlimited OpenLink messages </li>
<li>Premium Access content </li>
<li>One-business-day Customer Service </li>
</ul>
<p>&nbsp;</p>
<p><font color="#ADBEEC"><u><strong>Pro</strong></u></font> accounts cost $200 per month or $2,000 per year. This includes:</p>
<ul>
<li>50 InMails per month with a seven-day response guarantee
<div style="padding-left: 15px">- Unused InMail credits roll over each month, up to a maximum of 150</div>
</li>
<li>Expanded profile views for the top 200 search results outside your network </li>
<li>40 Introductions open at a time </li>
<li>Unlimited one-click reference searches </li>
<li>OpenLink Network membership </li>
<li>Unlimited OpenLink messages </li>
<li>Premium Access content </li>
<li>One-business-day Customer Service </li>
</ul>
<p>&nbsp;</p>
<p>Interested in networking?&#8230; introduce yourself on <a title="Introduce youself to me on LinkedIn!" target="_blank" href="http://www.linkedin.com/in/pldescoteaux">LinkedIn</a>!</p>
<p>Reference Information:</p>
<ul>
<li><a title="LinkedIn Top Ten Questions" target="_blank" href="http://www.linkedin.com/static?key=customer_service">LinkedIn Top Ten Questions</a></li>
<li><a title="Savvy Companies Get LinkedIn to Find Top Talent" target="_blank" href="http://www.linkedin.com/static?key=press_releases_010707">Savvy Companies Get LinkedIn to Find Top Talent</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.banjora.com/2007/12/30/linkedin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Treo 750 upgrade to Windows Mobile 6!</title>
		<link>http://www.banjora.com/2007/12/29/treo-750-upgrade/</link>
		<comments>http://www.banjora.com/2007/12/29/treo-750-upgrade/#comments</comments>
		<pubDate>Sat, 29 Dec 2007 23:21:11 +0000</pubDate>
		<dc:creator>Pavel L. Descoteaux</dc:creator>
		
		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[Informational]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Palm Treo 750 upgrade]]></category>

		<category><![CDATA[windows mobile 6]]></category>

		<guid isPermaLink="false">http://www.banjora.com/2007/12/29/treo-750-upgrade/</guid>
		<description><![CDATA[

After many months of waiting, the free Windows Mobile 6 (formerly code named &#34;Crossbow&#34;) finally became available for the US versions of the Palm Treo 750 last month. This upgrade is designed for the Palm Treo 750 running on the AT&#38;T network, and will update the smartphone’s software to the latest release, version 2.25. 

For [...]]]></description>
			<content:encoded><![CDATA[<p><span>
<p align="justify">
<a target="_blank" href="http://www.microsoft.com/windowsmobile/default.mspx"><img src="http://www.banjora.com/wp-content/uploads/2007/12/winmobile6-splash.thumbnail.jpg" align="left" width="128" height="128" /></a>After many months of waiting, the free <a title="Windows Mobile 6" target="_blank" href="http://www.microsoft.com/windowsmobile/default.mspx">Windows Mobile 6</a> (formerly code named &quot;Crossbow&quot;) finally became available for the US versions of the <a title="Palm Treo 750" target="_blank" href="http://www.palm.com/us/support/downloads/treo750.html#treo750att">Palm Treo 750</a> last month. This upgrade is designed for the Palm Treo 750 running on the AT&amp;T network, and will update the smartphone’s software to the latest release, version 2.25. </p>
<p align="justify">
For the Cingular and AT&amp;T customers, the <a title="High-speed Downlink Packet Access" target="_blank" href="http://en.wikipedia.org/wiki/High-Speed_Downlink_Packet_Access">High-speed Downlink Packet Access</a> (HSDPA) capability allows for faster data-download speeds on 3G/UMTS/HSDPA networks. </p>
<p align="justify">
HSDPA is a new protocol for mobile telephone data transmission. It is known as a 3.5G (G stands for generation) technology. Essentially, the standard will provide download speeds on a mobile phone equivalent to an ADSL (Asymmetric Digital Subscriber Line) line in a home, removing any limitations placed on the use of your phone by a slow connection. Though any data can be transmitted, applications with high data demands such as video and streaming music are the focus of HSDPA.</p>
<p align="justify">
The current Treo 750 runs Windows Mobile 5.2 Pocket PC edition. It is powered by a 300MHz Samsung processor and has 128MB nonvolatile flash memory (60MB available for storage). The display is a 65k colour, 240 x 240 pixel touch screen. It also has integrated Bluetooth 1.2 wireless technology. It has a new side mounted mini-SD memory expansion and a 1.3 megapixel camera with 2x digital zoom. The battery is a removable 1200 mAh Lithium-ion, good for a claimed 4.5 hours GSM / 2.5 hours UMTS talk time, with 10 days standby time. </p>
<p align="justify">
Although some enhancements in this upgrade may require Exchange Server 2007, they include:</p>
<ul>
<li>Microsoft Direct Push Technology connection to email, calendar, contacts and tasks</li>
<li>Improved Calendar with Day-at-a-Glance bar</li>
<li>Email enhancements such as HTML-formatted email messages</li>
<li>Ability to set an out-of-office message from the Treo smartphone</li>
<li>Mini-SD storage card encryption, password and PIN improvements, and remote data wipe</li>
<li>Ability to search for email messages on the Exchange server</li>
<li>Ability to set an out-of-office message from the Treo smartphone</li>
<li>Meeting request and scheduling conflict improvements</li>
</ul>
<p align="justify">
<a href='http://www.banjora.com/wp-content/uploads/2007/12/palm-treo-750-wm6.jpg' rel="lightbox" title='Palm Treo 750 with Windows Mobile 6'><img src='http://www.banjora.com/wp-content/uploads/2007/12/palm-treo-750-wm6.thumbnail.jpg' alt='Palm Treo 750 with Windows Mobile 6' border="0" align="right" /></a></span>The upgrade itself was very painless, however, it is critical that you read and understand the upgrade directions <u>before</u> attempting this upgrade. There is only one download limit per device (requires the Treo 750&#8217;s serial number), therefore having a backup of your Windows Mobile 6 upgrade installer is essential for potential future recovery.</p>
<p>The complete features list, upgrade documentation, and downloads can be found on <a title="Palm's website for the Treo 750" target="_blank" href="http://www.palm.com/us/support/downloads/treo750update/att.html">Palm&#8217;s website for the Treo 750</a></p>
<p>Reference Information:</p>
<ul>
<li><a title="The Palm Treo 750 download information" target="_blank" href="http://www.palm.com/us/support/downloads/treo750update/att.html">The Palm Treo 750 download information</a></li>
<li><a title="High-Speed Downlink Packet Access [HSDPA]" target="_blank" href="http://en.wikipedia.org/wiki/High-Speed_Downlink_Packet_Access">High-Speed Downlink Packet Access [HSDPA]</a></li>
<li><a title="AT&amp;T 3G network" target="_blank" href="http://www.wireless.att.com/learn/why/technology/3g-umts.jsp">AT&amp;T 3G network</a></li>
<li><a title="Windows Mobile 6 Summary" target="_blank" href="http://reviews.cnet.com/windows/windows-mobile-6/4505-3672_7-32328708.html">Windows Mobile 6 Summary</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.banjora.com/2007/12/29/treo-750-upgrade/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dell Precision M6300 Laptop</title>
		<link>http://www.banjora.com/2007/12/02/dell-m6300/</link>
		<comments>http://www.banjora.com/2007/12/02/dell-m6300/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 04:32:30 +0000</pubDate>
		<dc:creator>Pavel L. Descoteaux</dc:creator>
		
		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://www.banjora.com/2007/12/02/dell-m6300/</guid>
		<description><![CDATA[This was an interesting project&#8230; we were looking for a good and reliable business laptop model that has a lot of scalability, horse power, video power and high screen resolution&#8230; and amongst what is being offered by Sony, HP and Dell, there were a lot to choose from.
Our biggest disappointment comes with the SOHO (Small [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">This was an interesting project&#8230; we were looking for a good and reliable business laptop model that has a lot of scalability, horse power, video power and high screen resolution&#8230; and amongst what is being offered by Sony, HP and Dell, there were a lot to choose from.</p>
<p align="justify">Our biggest disappointment comes with the SOHO (Small Office/Home Office) laptop models that have Microsoft Vista preinstalled, and the associated challenge of reformatting the laptop with either a clean version or different Operating System. Like so many companies and colleagues that will agree, Microsoft Vista is just not a good fit at this pointe. Additionally, we wanted a laptop that could run Linux or Windows Server 2003, and this narrowed down the selection of models quickly.</p>
<p align="justify">We chose the <a title="Dell Precision M6300" target="_blank" href="http://www.dell.com/content/products/productdetails.aspx/precn_m6300?c=us&#038;l=en&#038;s=bsd&#038;cs=04">Dell Precision M6300</a> model laptop because first of all, you had a choice between Vista or XP, and in addition, there may be future plans where Linux may be available as a third option for an Operating System. Another reason we elected to go with Dell is their excellent customer service, which separates them from the other laptop manufactures.</p>
<ul>
<li><b><a name="request for product" title="Request for Product (RFP)" href="#request for product">Request for Product (RFP)</a></b></li>
<li><b><a name="specifications" title="Specifications" href="#specification">Specifications</a></b></li>
<li><b><a name="impressions" title="Impressions" href="#impressions">Impressions</a></b></li>
<li><b><a name="benchmarks" title="Benchmarks" href="#benchmarks">Benchmarks</a></b></li>
<li><b><a name="fotos" title="Fotos" href="#fotos">Fotos</a></b></li>
<li><b><a name="links" title="Reference Information" href="#links">Reference Information</a></b></li>
<li><b><a name="summation" title="Summation" href="#summation">Summation</a></b></li>
</ul>
<p><b><a href="#request for product">Request for Product</a></b> .</p>
<p align="justify">For procurement of this Dell model M6300 laptop, we choose to simply place the order on <a title="Dell" target="_blank" href="http://www.dell.com">Dell&#8217;s</a> website. The order process was very simplistic and the ability to check the order status provides comfort and planning.</p>
<p align="justify">Our biggest concern was the expected delivery date that was 3 weeks out, as this would impact a huge project that we were working on. We contacted Dell Customer Services and told them of our situation, and they were very sympathetic and helpful. They explained that although the delivery date was 3 weeks out, that this could change and that it would be very likely to ship much sooner.</p>
<p align="justify">Starting List Price $1,899</p>
<p><b><a title="Specifications" href="#specifications">Specifications</a></b></p>
<ul>
<li>Dell Precision M6300, Intel Core 2 Duo T7500, 2.20GHz 800Mhz, 4MB L2 Cache, Dual Core</li>
<li>17 inch Wide Screen WUXGA TrueLife LCD</li>
<li>2.0GB, DDR2-667 SDRAM, 2 DIMM </li>
<li>NVIDIA QUADRO FX1600M 512MB TurboCache (256 dedicated)</li>
<li>120GB Hard Drive 9.5MM 7200RPM</li>
<li>Touchpad AND UPEK fingerprint reader</li>
<li>WINDOWS XP PRO SP2, with MediaDell, English Factory Install</li>
<li>Dell Wireless 360 Bluetooth Module for XP</li>
<li>8X DVD+/-RW with Roxio CreatorDell Edition Digital Media andCyberlink Power DVD</li>
<li>Intel 4965 WLAN (802.11a/g/n) mini Card, Factory Install</li>
<li>9-Cell/80 WHr Primary Battery</li>
</ul>
<p>In the Box Accessories</p>
<ul>
<li>130W AC Adapter, Dell Precision M6300</li>
<li>Resource DVD with Diagnostics and Drivers, Dell Precision M6300</li>
<li>WINDOWS XP PRO SP2, with MediaDell, English</li>
<li>Basic Manual</li>
<li>Cyberlink PowerDVD 7.0 Software</li>
<li>Roxio Creator 9.0 DE</li>
</ul>
<p><b><a title="Impressions" href="#impressions">Impressions</a></b></p>
<p align="justify">We received the laptop in a week&#8217;s time, and the laptop was very well packed in the shipping container. However, the 3 pronged power cord was not shipped with the laptop. We contacted Dell Customer Services and they were able to ship out a cord over night. </p>
<p align="justify">Just by looking at this laptop, you can definitely tell that Dell was serious about the power that they put into this machine. The laptop has a rather bulky and heavy look about it, but in reality, it is definitely worth getting to know and acquiring a feel for.</p>
<p><b><a title="Benchmarks" href="#benchmarks">Benchmarks</a></b></p>
<p>No benchmarks were taken.</p>
<p><b><a title="Fotos" href="#fotos">Fotos</a></b></p>
<table border="0" width="100%" id="table1" cellpadding="2" style="border-collapse: collapse">
<tr>
<td align="center"><a href='http://www.banjora.com/wp-content/uploads/2007/12/dell-m3600-front.jpg'  rel="lightbox" title='dell-m3600-front'><img src='http://www.banjora.com/wp-content/uploads/2007/12/dell-m3600-front.thumbnail.jpg' alt='dell-m3600-front' /></a></td>
<td align="center"><a href='http://www.banjora.com/wp-content/uploads/2007/12/dell-m3600-bottm.jpg'  rel="lightbox" title='dell-m3600-bottom'><img src='http://www.banjora.com/wp-content/uploads/2007/12/dell-m3600-bottm.thumbnail.jpg' alt='dell-m3600-bottom' /></a></td>
<td align="center"><a href='http://www.banjora.com/wp-content/uploads/2007/12/dell-m3600-lside.jpg'  rel="lightbox" title='dell-m3600-lside'><img src='http://www.banjora.com/wp-content/uploads/2007/12/dell-m3600-lside.thumbnail.jpg' alt='dell-m3600-lside' /></a></td>
</tr>
<tr>
<td align="center"><font color="#FFFFFF">Front View</font></td>
<td align="center"><font color="#FFFFFF">Bottom View</font></td>
<td align="center"><font color="#FFFFFF">Side View</font></td>
</tr>
<tr>
<td align="center"><font color="#FFFFFF"></font></td>
<td align="center"><a href='http://www.banjora.com/wp-content/uploads/2007/12/dell-m3600-angle.jpg'  rel="lightbox" title='dell-m3600-angle'><img src='http://www.banjora.com/wp-content/uploads/2007/12/dell-m3600-angle.thumbnail.jpg' alt='dell-m3600-angle' /></a></td>
<td align="center"><font color="#FFFFFF"></font></td>
</tr>
<tr>
<td align="center"><font color="#FFFFFF"></font></td>
<td align="center"><font color="#FFFFFF">Angle View</font></td>
<td align="center"><font color="#FFFFFF"></font></td>
</tr>
</table>
<p><b><a title="Reference Information" href="#links">Reference Information</a></b></p>
<ul>
<li><a title="Dell Precision M6300 Product" target="_blank" href="http://www.dell.com/content/products/productdetails.aspx/precn_m6300?c=us&#038;l=en&#038;s=bsd&#038;cs=04">Dell Precision M6300 Product</a></li>
<li><a title="Dell Precision M6300 Drivers" target="_blank" href="http://support.dell.com/support/downloads/index.aspx?c=us&#038;cs=555&#038;l=en&#038;s=biz&#038;~ck=bt">Dell Precision M6300 Drivers</a></li>
<li><a title="Dell CompleteCare Accidental Damage Service" target="_blank" href="http://www.dell.com/content/topics/global.aspx/services/client_support/completecare_svc?c=us&#038;cs=555&#038;l=en&#038;s=biz">Dell CompleteCare Accidental Damage Service</a></li>
<li><a title="UPEK Support &amp; Drivers" target="_blank" href="http://www.upek.com/support/dl_strip_ibm.asp">UPEK Support &amp; Drivers</a></li>
<li><a title="NotebookReview.com of the M6300" target="_blank" href="http://www.notebookreview.com/default.asp?newsID=3924">Notebook Review of the M6300</a></li>
</ul>
<p><b><a href="#summation">Summation</a></b></p>
<p align="justify">We conclude that this laptop was definitely a good choice for us, and are definitely recommending this model to all of our clients. We also elected to get the 3 year &#8216;<a title="CompleteCare Accidental Damage Service" target="_blank" href="http://www.dell.com/content/topics/global.aspx/services/client_support/completecare_svc?c=us&#038;cs=555&#038;l=en&#038;s=biz">CompleteCare Accidental Damage Service</a>&#8216; as a business decision because we it would be difficult to survive long periods of downtime waiting for repairs.</p>
<table border="0" width="100%" cellpadding="2" style="border-collapse: collapse" id="table2">
<tr>
<td colspan="2"><font color="#CCCCCC">Examples of some of the un-intentional damage that are covered are:</font></p>
</td>
</tr>
<tr>
<td><u><b><font color="#FFFFFF">Cause of Failure</font></b></u></td>
<td><u><b><font color="#FFFFFF">Resolution Description</font></b></u></td>
</tr>
<tr>
<td><font color="#CCCCCC">Liquid spilled on or in unit</font></td>
<td><font color="#CCCCCC">Repaired or unit replaced</font></td>
</tr>
<tr>
<td><font color="#CCCCCC">Drops, falls, and other<br />
		collisions</font></td>
<td><font color="#CCCCCC">Repaired or unit replaced</font></td>
</tr>
<tr>
<td><font color="#CCCCCC">Electrical surge</font></td>
<td><font color="#CCCCCC">Repaired or unit replaced</font></td>
</tr>
<tr>
<td><font color="#CCCCCC">Damaged or broken LCD due to a drop or fall</font></td>
<td><font color="#CCCCCC">Repaired</font></td>
</tr>
<tr>
<td><font color="#CCCCCC">Accidental breakage (multiple pieces)</font></td>
<td><font color="#CCCCCC">Repaired or unit replaced</font></td>
</tr>
<tr>
<td colspan="2">&nbsp;</td>
</tr>
<tr>
<td colspan="2"><font color="#CCCCCC">Damage caused by intentional acts, fire, theft or loss, is not covered under CompleteCare Accidental Damage Service2. Some examples of damage that would NOT be covered are:</font></td>
</tr>
<tr>
<td><u><b><font color="#FFFFFF">Cause of Failure</font></b></u></td>
<td><u><b><font color="#FFFFFF">Resolution Description</font></b></u></td>
</tr>
<tr>
<td><font color="#CCCCCC">Damaged in a fire</font></td>
<td><font color="#CCCCCC">Not covered — insurance coverage</font></td>
</tr>
<tr>
<td><font color="#CCCCCC">Intentional damage (hammer marks)</font></td>
<td><font color="#CCCCCC">Not covered — user responsible</font></td>
</tr>
<tr>
<td><font color="#CCCCCC">Stolen unit</font></td>
<td><font color="#CCCCCC">Not covered — insurance coverage</font></td>
</tr>
<tr>
<td><font color="#CCCCCC">Normal wear (does not affect system performance)</font></td>
<td><font color="#CCCCCC">Not covered</font></td>
</tr>
<tr>
<td><font color="#CCCCCC">Consumables (batteries, bulbs)</font></td>
<td><font color="#CCCCCC">Not covered</font></td>
</tr>
</table>
<p></font></p>
<p align="justify"><b>Pros:</b></p>
<p align="justify">
<ul>
<li>
<p align="justify">Definitely well made and appears like it can take normal travel abuse.</li>
<li>
<p align="justify">We were able to install Windows 2003 Enterprise Edition, however, two of the non-critical hardware devices required drivers that could not be located. All of the critical drivers were installed without issue.</li>
<li>
<p align="justify">We really were amazed at the speed of this model. The Windows 2003 and other software installed very quickly, and the speed continued to remain so once we configured this laptop as a Primary Domain Controller.</li>
<li>
<p align="justify">We are big advocates of higher screen resolution that gives more vision real estate. The 17&quot; WUXGA (Wide Ultra Extended Graphics) screen provides excellent 1920&#215;1200 resolution which was a great match for us.</li>
<li>
<p align="justify">The network speed is also unbelievable for both wireless and LAN.</li>
<li>
<p align="justify">Excellent Dell Customer Service</p>
</p>
</ul>
<p align="justify"><b>Cons:</b></p>
<p align="justify">
<ul>
<li>
<p align="justify">We were very disappointed with Dell&#8217;s version of their enhanced XP, and we typically strip off this customization as it consumes CPU cycles.</li>
<li>
<p align="justify">For the drivers that we used on the Windows 2003 installation, we had to do something a bit different. The driver media that Dell shipped with the laptop requires that you install their user friendly interface for installing drivers. These drivers have a built-in validation for the Operating System, and many will fail, even though they will work for Server 2003. To work around this, we simply extracted all the drivers to a separate folder, then made a CD of these same busted out drivers. This allowed us to have Windows determine if the driver was suitable instead.</li>
<li>
<p align="justify">The CompleteCare Accidental Damage Service is not transferable, and are valid only for new purchases from Dell Medium and Large Business for delivery in the 50 United States.</li>
<li>
<p align="justify">Currently, we were able to find the driver for the UPEK fingerprint reader, but not the software for programming the scanner. This was not critical for us, and perhaps in time, we will find a solution.</li>
<li>
<p align="justify">Extremely large power supply, making the storage in the laptop bag very problematic.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.banjora.com/2007/12/02/dell-m6300/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HP W2207 22&#8221; WS Flat Panel Monitor</title>
		<link>http://www.banjora.com/2007/11/30/hp-w2207/</link>
		<comments>http://www.banjora.com/2007/11/30/hp-w2207/#comments</comments>
		<pubDate>Fri, 30 Nov 2007 21:58:24 +0000</pubDate>
		<dc:creator>Pavel L. Descoteaux</dc:creator>
		
		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[Reviews]]></category>

		<category><![CDATA[HP]]></category>

		<category><![CDATA[HP W2207 22” WS Flat Panel Monitor]]></category>

		<category><![CDATA[W2297]]></category>

		<guid isPermaLink="false">http://www.banjora.com/2007/11/30/hp-w2207/</guid>
		<description><![CDATA[As many of our projects become more vision intensive, we started looking at some reasonable widescreen flat panel monitors to use with the Windows extended desktop functionality. At first, we were looking for something that will simply allow us to graphic design and to write code using a larger viewing area, but as we looked [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">As many of our projects become more vision intensive, we started looking at some reasonable widescreen flat panel monitors to use with the Windows extended desktop functionality. At first, we were looking for something that will simply allow us to graphic design and to write code using a larger viewing area, but as we looked more into these widescreen monitors, it did not become so simple.</p>
<p align="justify">It is no wonder that the gamers love and demand these types of monitors&#8230; and as we started looking at the differences in regards to quality of construction, display resolutions and contrast ratios, it became not so simplistic. Stepping back into reality, we refocused on what would be a perfect fit for not only us, but for our client&#8217;s needs as well.</p>
<p align="justify">We chose the <a title="HP W2207 22&quot; Widescreen Flat Panel LCD Monitor" target="_blank" href="http://h10025.www1.hp.com/ewfrf/wc/prodinfoCategory?lc=en&#038;cc=us&#038;dlc=&#038;product=3363837">HP W2207 22&quot; Widescreen Flat Panel LCD Monitor</a> because it would definitely get us the vision area real estate that we were looking for, and it has excellent high resolution picture quality. In addition, this model of monitor has a pivot feature that allows for a portrait or landscape view (see foto below).</p>
<ul>
<li><b><a name="request for product" title="Request for Product (RFP)" href="#request for product">Request for Product (RFP)</a></b></li>
<li><b><a name="specifications" title="Specifications" href="#specification">Specifications</a></b></li>
<li><b><a name="impressions" title="Impressions" href="#impressions">Impressions</a></b></li>
<li><b><a name="benchmarks" title="Benchmarks" href="#benchmarks">Benchmarks</a></b></li>
<li><b><a name="fotos" title="Fotos" href="#fotos">Fotos</a></b></li>
<li><b><a name="links" title="Reference Information" href="#links">Reference Information</a></b></li>
<li><b><a name="summation" title="Summation" href="#summation">Summation</a></b></li>
</ul>
<p><b><a href="#request for product">Request for Product</a></b> .</p>
<p align="justify">We originally looked at procuring the demo monitor off of the internet, but later decided to use the local distributors.</p>
<p align="justify">For this particular model, we choose <a title="Circuit City" target="_blank" href="http://www.circuitcity.com">Circuit City</a> because their local store has great customer service, and a no-hassle price matching.</p>
<p align="justify">List price $329.99</p>
<p><b><a title="Specifications" href="#specifications">Specifications</a></b></p>
<ul>
<li>22 in Widescreen Thin Film Transistor LCD Active Matrix TV</li>
<li>1000:1 Contrast Ratio and Resolution at 1680 x 1050</li>
<li>Standard 15 Pin D Sub Analog and Advanced DVI D Digital Interfaces</li>
<li>24.2 Lbs (WxLxH) 20.61&quot; x 10.43&quot; x 11.38&quot;</li>
<li>16:10 (Widescreen) Physical Aspect Ratio</li>
<li>5ms Response Time </li>
<li>300 Nits Brightness</li>
</ul>
<p>In the Box Accessories</p>
<ul>
<li>A/C power cable 6.2 ft. (1.8m)</li>
<li>VGA cable 4.9 ft. (1.8m)</li>
<li>HDCP - VGA cable</li>
<li>Audio Cable</li>
<li>Documentation and Software CD</li>
</ul>
<p><b><a title="Impressions" href="#impressions">Impressions</a></b></p>
<p align="justify">The monitor was somewhat well packed in the shipping container, however, we prefer our hardware to be sufficiently packed to avoid any damages during shipment, which would then require a replacement. The monitor itself was easy to remove from the container and was easy to setup. </p>
<p align="justify">From the information that we were able to pull down from other reviews, we elected not to install the software that came with the monitor because we use Windows Server 2003, and it appears that the drivers and pivot feature were only certified for XP and Vista. Regardless, the monitor plugged and played without any problems.</p>
<p><b><a title="Benchmarks" href="#benchmarks">Benchmarks</a></b></p>
<p>No benchmarks were taken.</p>
<p><b><a title="Fotos" href="#fotos">Fotos</a></b></p>
<table border="0" width="100%" id="table1" cellpadding="2" style="border-collapse: collapse">
<tr>
<td align="center"><a href='http://www.banjora.com/wp-content/uploads/2007/12/hp-w2207-front.jpg'  rel="lightbox" title='hp-w2207-front'><img src='http://www.banjora.com/wp-content/uploads/2007/12/hp-w2207-front.thumbnail.jpg' alt='hp-w2207-front' /></a></td>
<td align="center"><a href='http://www.banjora.com/wp-content/uploads/2007/12/hp-w2207-pivot.jpg'  rel="lightbox" title='hp-w2207-pivot'><img src='http://www.banjora.com/wp-content/uploads/2007/12/hp-w2207-pivot.thumbnail.jpg' alt='hp-w2207-pivot' /></a></td>
<td align="center"><a href='http://www.banjora.com/wp-content/uploads/2007/12/hp-w2207-rside.jpg'  rel="lightbox" title='hp-w2207-rside'><img src='http://www.banjora.com/wp-content/uploads/2007/12/hp-w2207-rside.thumbnail.jpg' alt='hp-w2207-rside' /></a></td>
</tr>
<tr>
<td align="center"><font color="#FFFFFF">Front View</font></td>
<td align="center"><font color="#FFFFFF">Front View with Pivot Functionallity</font></td>
<td align="center"><font color="#FFFFFF">Side View</font></td>
</tr>
</table>
<p><b><a title="Reference Information" href="#links">Reference Information</a></b></p>
<ul>
<li><a title="Circuit City" target="_blank" href="http://www.circuitcity.com">Circuit City</a></li>
<li><a title="HP Product Information" target="_blank" href="http://h10025.www1.hp.com/ewfrf/wc/prodinfoCategory?lc=en&#038;cc=us&#038;dlc=&#038;product=3363837">HP Product Information</a></li>
<li><a title="Amazon" target="_blank" href="http://www.amazon.com/W2207-Widescreen-Flat-Panel-Monitor/dp/B000OK6T9W">Amazon</a></li>
<li><a title="BestBuy" target="_blank" href="http://www.bestbuy.com/">BestBuy</a></li>
</ul>
<p><b><a href="#summation">Summation</a></b></p>
<p align="justify">We conclude that this was definitely a good choice for us and are recommending this monitor to all of our clients. We also elected to get the Circuit City Advantage Protection Plan for 2 years. This plan is more commonly called the &#8216;peace-of-mind coverage&#8217; because it provides:</p>
<p align="justify">
• Service and protection beyond the manufacturer&#8217;s warranty<br />
• Hassle-free repair or replacement, including parts, labor and shipping<br />
• Nationwide service either in your home, by phone, mail or at any Circuit City store<br />
• Power surge protection<br />
• Transferable to new owner<br />
• Full refund within 30 days of purchase</p>
<p align="justify">And the Circuit City Advantage Protection Plan Plus includes:</p>
<p>• Accidental damage from handling coverage from day one<br />
• Screen and lens protection for notebook PCs, monitors, digital cameras and camcorders<br />
• Priority phone service which moves you to the &quot;front of the line&quot; (for notebook and desktop PCs, monitors and digital cameras)<br />
• Express shipping for notebook PCs</p>
]]></content:encoded>
			<wfw:commentRss>http://www.banjora.com/2007/11/30/hp-w2207/feed/</wfw:commentRss>
		</item>
		<item>
		<title>We made the move to HostMonster!</title>
		<link>http://www.banjora.com/2007/11/17/move-to-hostmonster/</link>
		<comments>http://www.banjora.com/2007/11/17/move-to-hostmonster/#comments</comments>
		<pubDate>Sat, 17 Nov 2007 18:15:05 +0000</pubDate>
		<dc:creator>Pavel L. Descoteaux</dc:creator>
		
		<category><![CDATA[Informational]]></category>

		<category><![CDATA[banjora]]></category>

		<category><![CDATA[hostmonster]]></category>

		<guid isPermaLink="false">http://www.banjora.com/2007/11/07/we-made-the-move-to-hostmonster/</guid>
		<description><![CDATA[

After looking at many of the hosting companies out there, and talking with many of our colleagues, we decided to switch over to hostmonster. We were looking for better response times regarding web access and support, along with an improvement on management tools.
The transition for our site and our customers was very painless, and hostmonster [...]]]></description>
			<content:encoded><![CDATA[<p align="justify" style="margin-top: 0; margin-bottom: 0">
<a title="hostmonster" target="_blank" href="http://www.hostmonster.com/"><br />
<img src="http://www.banjora.com/wp-content/uploads/2007/11/hostmonster_222x55.jpg" align="left" width="222" height="55" border="0" /></a>After looking at many of the hosting companies out there, and talking with many of our colleagues, we decided to switch over to <a title="hostmonster" target="_blank" href="http://www.hostmonster.com/">hostmonster</a>. We were looking for better response times regarding web access and support, along with an improvement on management tools.</p>
<p align="justify" style="margin-top: 0; margin-bottom: 0">The transition for our site and our customers was very painless, and <a title="hostmonster" target="_blank" href="http://www.hostmonster.com/">hostmonster</a> supports <a title="GoogleApps" target="_blank" href="https://www.google.com/a/">GoogleApps</a> and <a title="WordPress" target="_blank" href="http://wordpress.org/">WordPress</a>, which was a key component in the decision. </p>
<p align="justify" style="margin-top: 0; margin-bottom: 0">&nbsp;</p>
<ul>
<li>
<p align="left" style="margin-top: 0; margin-bottom: 0">300GB space &amp; 3,000GB monthly transfer.</p>
</li>
<li>
<p align="left" style="margin-top: 0; margin-bottom: 0">Free domain name forever.</p>
</li>
<li>
<p align="left" style="margin-top: 0; margin-bottom: 0">Host unlimited unique website/domains.</p>
</li>
<li>
<p align="left" style="margin-top: 0; margin-bottom: 0">Cpanel with fantastico.</p>
</li>
<li>
<p align="left" style="margin-top: 0; margin-bottom: 0">Unlimited emails, FTP, and 100 MySQL.</p>
</li>
<li>
<p align="left" style="margin-top: 0; margin-bottom: 0">Ecommerce ready and free shared SSL.</p>
</li>
<li>
<p align="left" style="margin-top: 0; margin-bottom: 0">Support streaming video audio.</p>
</li>
<li>
<p align="left" style="margin-top: 0; margin-bottom: 0">24/7 support with Live-Chat Support.
	</p>
</li>
<li>
<p align="left" style="margin-top: 0; margin-bottom: 0">99.9% uptime guarantee &amp; 30 days guarantee.</p>
</li>
</ul>
<ul>
<li>
<p align="left" style="margin-top: 0; margin-bottom: 0">Normal price&#8230;$5.95/mth</p>
</li>
<li>
<p align="left" style="margin-top: 0; margin-bottom: 0">Rebate offers&#8230;<a target="_blank" href="http://www.hosting-rebate.com/rebate-link.php?id=hostmonster">$4.95/mth</a></p>
</li>
</ul>
<p align="left" style="margin-top: 0; margin-bottom: 0">
References:</p>
<p align="left" style="margin-top: 0; margin-bottom: 0"><a title="Web Hosting Judge" target="_blank" href="http://www.webhostingjudge.com/5.html">Web Hosting Judge</a>&#8230;<br />
<a title="Hosting Rebates" target="_blank" href="http://www.hosting-rebate.com">Hosting Rebates</a>&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.banjora.com/2007/11/17/move-to-hostmonster/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sweetpea 3.0.0 Released!</title>
		<link>http://www.banjora.com/2007/11/07/sweetpea-300-released/</link>
		<comments>http://www.banjora.com/2007/11/07/sweetpea-300-released/#comments</comments>
		<pubDate>Wed, 07 Nov 2007 17:49:34 +0000</pubDate>
		<dc:creator>Pavel L. Descoteaux</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[banjora]]></category>

		<category><![CDATA[sweetpea]]></category>

		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.banjora.com/?p=1</guid>
		<description><![CDATA[Sweetpea 3.0.0 Released!
The new Sweetpea 3.0.0 has been released from the development labs at Banjora&#8230;


				
					Sweetpea 3.0.0
					Downloads: 297 times
				
			
]]></description>
			<content:encoded><![CDATA[<p>Sweetpea 3.0.0 Released!</p>
<p>The new Sweetpea 3.0.0 has been released from the development labs at Banjora&#8230;</p>
<p><a href="http://www.banjora.com/wp-content/uploads/2007/04/sweetpea-view.jpg" rel="lightbox" title="Sweetpea 3.0.0"><img src='http://www.banjora.com/wp-content/uploads/2007/04/sweetpea-view.thumbnail.jpg' alt='Sweetpea 3.0.0 Screenshot' /></a></p>

				<div class="imp-download">
					<strong><a href="http://www.banjora.com/?dl=1" title="Sweetpea 3.0.0">Sweetpea 3.0.0</a></strong>
					<small>Downloads: 297 times</small>
				</div>
			
]]></content:encoded>
			<wfw:commentRss>http://www.banjora.com/2007/11/07/sweetpea-300-released/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
