<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.mconstantin.eu.org/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Blogging About .NET : Personal Achievements</title><link>http://blogs.mconstantin.eu.org/cchrism/archive/category/7.aspx</link><description>Personal Achievements</description><dc:language>en-US</dc:language><generator>CommunityServer 2.0 (Build: 60404.2676)</generator><item><title>Upgrading from Windows 2000 to Windows 2003</title><link>http://blogs.mconstantin.eu.org/cchrism/archive/2007/04/05/1095.aspx</link><pubDate>Fri, 06 Apr 2007 03:33:00 GMT</pubDate><guid isPermaLink="false">84fa4630-d7f3-4739-a4ce-65ab18add461:1095</guid><dc:creator>cchrism</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.mconstantin.eu.org/cchrism/comments/1095.aspx</comments><wfw:commentRss>http://blogs.mconstantin.eu.org/cchrism/commentrss.aspx?PostID=1095</wfw:commentRss><wfw:comment>http://blogs.mconstantin.eu.org/rsscomments/1095.aspx</wfw:comment><description>In the past couple of weeks I've been busy trying to update a Windows 2000 installation to Windows 2003. Apparently something went very wrong, so the upgrade took about a week in total or so, because setup program failed to do some steps apparently required in order to complete the upgrade. &lt;P /&gt;
After running WINNT32.EXE in the working Windows 2000 installation, program asked for a reboot, I agreed and BOOM! blue screen. The famous BSOD stating stop 7F (aka INACCESIBLE_BOOT_DEVICE). Trying to debug the issue via WINDBG and serial cable (yeah, I had to run to COMPUSA, they are closing the stores in my region and get a plain old serial cable) didn't revealed anything terribly wrong. After long sessions of registry compare revealed that the culprit was VIAAGP1.SYS driver. If you are wondering what has to do VIAAGP1 with disk access (INACCESSIBLE_BOOT_DEVICE is directly tied with disk access), well, the only explanation I came up with is that VIAAGP1 is marked in UpperFilters key for the AGP bus which has PCI.SYS as a driver, and apparently VIAAGP1 failure was tearing down the entire PCI bus access.&lt;P /&gt;
If you think it's the end you are terribly wrong. After that, SETUP was crashing with access violation at the "Installing Devices" step. The culprit? Apparently, MS_NDISWANBH instance which is the network monitor filter driver for WAN. &lt;P /&gt;
And after a week of rebooting and debugging, Windows 2003 finally came up, with the fenomenal problem of not starting TCPIP driver. Reinstalling the protocol fixed the issue.&lt;P /&gt;
The short conclusion: now it works fine!&lt;P /&gt;
So if someone face similar problems this is what I've done (standard disclaimers apply, I'm not responsible if anything fails on your machine, make backups, you know the story):&lt;P /&gt;
&lt;UL&gt;&lt;LI&gt;Delete VIAAGP1 from UpperFilters entry in HKLM\SYSTEM\ControlSetxxx\ENUM subtree. More specifically the AGP bus, but there is no standard location. Just search here for VIAAGP1&lt;/LI&gt;
&lt;LI&gt;Delete CDR4_2K entries UpperFIlters from HKLM\SYSTEM\ControlSetxxx\Control\Classes subtree&lt;/LI&gt;
&lt;LI&gt;Delete all the entries for NDISWANBH in HKLM\SYSTEM\ControlSetxxx. This might was the cause for TCPIP driver not starting, however since setup kept crashing I could find a better solution at that moment. You might want to backup all the keys you are deleting, and restore them after the setup completes, YMMV&lt;/LI&gt;
&lt;/UL&gt;&lt;P /&gt;
And a side note: kernel debugging via WinDBG / serial cable at 115200 bps is not that bad. However the best is not to need such a debug.
&lt;img src="http://blogs.mconstantin.eu.org/aggbug.aspx?PostID=1095" width="1" height="1"&gt;</description><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/7.aspx">Personal Achievements</category></item><item><title>Reporting Services Uploader</title><link>http://blogs.mconstantin.eu.org/cchrism/archive/2006/10/15/1013.aspx</link><pubDate>Sun, 15 Oct 2006 20:26:00 GMT</pubDate><guid isPermaLink="false">84fa4630-d7f3-4739-a4ce-65ab18add461:1013</guid><dc:creator>cchrism</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.mconstantin.eu.org/cchrism/comments/1013.aspx</comments><wfw:commentRss>http://blogs.mconstantin.eu.org/cchrism/commentrss.aspx?PostID=1013</wfw:commentRss><wfw:comment>http://blogs.mconstantin.eu.org/rsscomments/1013.aspx</wfw:comment><description>Quite some time ago I have written a small utility that allows users to upload multiple Reporting Services reports (RDL files) at once to a Reporting Services Server. I have decided to make this utility public as others might find it useful.&lt;p /&gt;  The main problem with Microsoft SQL Reporting Services (either 2000 or 2005) is the lack of capability of uploading or downloading multiple RDL files at once. I know that the RS.exe utility exists, and it's presence is more proeminent in the 2005 version by adding the SQL Management Studio ability to script files of RS.exe, but you cannot upload quickly a locally stored folder full with RDL files, or for example copy a lot of reports from one server to another. That's why I decided to create this utility named RSUploader at this time at the version 0.5. Although I intent to update it a little bit I cannot promise that this will happen or a timeline for it's improvement.&lt;p /&gt;  RSUploader was built using .NET framework and presently the user interface is not the best in the world, but still gets the job done. The minimum requirement is .NET Framework 2.0 and it can connect to Microsoft SQL Reporting Services versions 2000 and 2005. You can download it from &lt;a href="http://blogs.mconstantin.eu.org/cchrism/attachment/1013.ashx"&gt;here&lt;/a&gt;&lt;p /&gt;  Among it's features you can:  &lt;UL&gt;  &lt;LI&gt;Browse the folder structure of Reporting Services&lt;/LI&gt;  &lt;LI&gt;Download all report definitions from one Reporting Services folder&lt;/LI&gt;  &lt;LI&gt;Upload a local folder containing RDL files in a reporting services folder&lt;/LI&gt;  &lt;LI&gt;Delete reports&lt;/LI&gt;  &lt;LI&gt;Hide/Unhide reports&lt;/LI&gt;  &lt;/UL&gt;  In addition to the ZIP archive I also attached a screenshot to know what to expect.&lt;p /&gt;  &lt;img width=632 height=552 src="http://gallery.mconstantin.eu.org/miscellaneous_pictures/images/1012/original.aspx" /&gt;&lt;P/&gt;  In order to successfully use RSUploader you have to type the URL of Reporting Service Web service, usually http://[machine]/ReportServer, do not swap it with the URL of Reporting Service Manager, and also if you are not using Integrated Authentication, type the username and password in the corresponding textboxes, and click Refresh in order to connect to the Reporting Services. Any time you change the URL or user / password you must click on Refresh in order to pick the new location.&lt;p /&gt;  Then expand the folder structure in the left view and in the right view you will have the actual list of reports and datasources. The checkbox in the front denotes the visibility of the item (if it is not checked it means it is hidden). Also you will have fix datasources for reports if you uploaded reports before you created your datasource and the GUID that Reporting Services is using for matching the datasources is not in sync.&lt;p /&gt;  If you find this utility useful please drop a note using the contact form.&lt;P/&gt; Of course, the information in this post and the utility is provided "AS IS" with no warranties, and confers no rights. I am not responsible if any thing doesn't work as expected or for any loss of data.&lt;img src="http://blogs.mconstantin.eu.org/aggbug.aspx?PostID=1013" width="1" height="1"&gt;</description><enclosure url="http://blogs.mconstantin.eu.org/cchrism/attachment/1013.ashx" length="22828" type="application/x-zip-compressed" /><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/1.aspx">.NET Stuff</category><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/7.aspx">Personal Achievements</category></item><item><title>Upgrading the WRT54GL</title><link>http://blogs.mconstantin.eu.org/cchrism/archive/2006/10/01/979.aspx</link><pubDate>Mon, 02 Oct 2006 03:42:00 GMT</pubDate><guid isPermaLink="false">84fa4630-d7f3-4739-a4ce-65ab18add461:979</guid><dc:creator>cchrism</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.mconstantin.eu.org/cchrism/comments/979.aspx</comments><wfw:commentRss>http://blogs.mconstantin.eu.org/cchrism/commentrss.aspx?PostID=979</wfw:commentRss><wfw:comment>http://blogs.mconstantin.eu.org/rsscomments/979.aspx</wfw:comment><description>&lt;P&gt;As I was &lt;A href="http://blogs.mconstantin.eu.org/cchrism/archive/2006/07/10/906.aspx"&gt;saying&lt;/A&gt; quite some time ago I decided to upgrading my router firmware. Originally, I wanted to buy this particular model, due it's upgradeability to a open source firmware. The upgrade was a little bit postponed due the fact my computer &lt;A href="http://blogs.mconstantin.eu.org/cchrism/archive/2006/09/20/978.aspx"&gt;decided to stop working&lt;/A&gt; so I finally managed to do it. If you ask me which were the primary reasons of the upgrade, well static DHCP allocation and SNMP daemon are in the top list. If Linksys would add these feature in the stock firmware, right now I would not add this post. Static DHCP allocation is a very nice feature these days, as you can reshuffle your network (I mean especially in a more business scenario) without touching all the computers/devices out there, but eliminates the disadvantages of changing the device address without any reasons, or not having a predictable numbering scheme. As I said these are quite important in a business scenario, but even at home if you have more than a few devices it worths. Actually, I had a problem with the stock firmware that if I unplugged the router all the devices would have new addresses that usually are not the same, depending which device was faster to request addresses. &lt;/P&gt;
&lt;P&gt;The next feature I do not think requires much explanation: graphing the network traffic is quite essential in pinpointing potential problems, so here it goes.&lt;/P&gt;
&lt;P&gt;And the lucky winner was DD-WRT after all. I investigated a little bit over OpenWRT, but I decided to go after DD-WRT, since it seemed to me a little bit more interesting. I agree that both distribution have pretty much the same offerings, and even found that they even want to merge to concentrate the effort. &lt;/P&gt;
&lt;P&gt;The upgrade process was plain simple, just followed the &lt;A href="http://www.dd-wrt.com/wiki/index.php/Installation"&gt;Wiki&lt;/A&gt; installation tutorial and in about 10 minutes it was completed. I decided to skip the mini version and go directly to the voip version. I found that works perfectly going directly to the bigger version, with the warning that it might not work for some devices/versions, but apparently if it doesn't work it doesn't brick your router. This being said I very happy with my latest DD-WRT v23 SP2, and it seems very stable to me. So, keep up the good work with DD-WRT!&lt;/P&gt;&lt;img src="http://blogs.mconstantin.eu.org/aggbug.aspx?PostID=979" width="1" height="1"&gt;</description><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/7.aspx">Personal Achievements</category><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/8.aspx">Networks related</category></item><item><title>Getting my computer back</title><link>http://blogs.mconstantin.eu.org/cchrism/archive/2006/09/20/978.aspx</link><pubDate>Thu, 21 Sep 2006 03:59:00 GMT</pubDate><guid isPermaLink="false">84fa4630-d7f3-4739-a4ce-65ab18add461:978</guid><dc:creator>cchrism</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.mconstantin.eu.org/cchrism/comments/978.aspx</comments><wfw:commentRss>http://blogs.mconstantin.eu.org/cchrism/commentrss.aspx?PostID=978</wfw:commentRss><wfw:comment>http://blogs.mconstantin.eu.org/rsscomments/978.aspx</wfw:comment><description>&lt;P&gt;After a long time I managed to get my computer working again.Two months ago my mainboard decided to no longer boot Windows, mainly due to expanding capacitors. Originally I didn't know that and I assumed that the hard disk is malfunctioning (being the previous owner of two IBM harddisks have taught me that better safe than sorry, although I didn't lost my data), so I bought a new Western Digital 250GB hard-disk. After waiting almost a week, I found that even if I changed the harddisk, the symptoms are the same, so the this wasn't the cause. I knew that my mainboard capacitors started to expand, but I never thought that the computer will hang and after reboot it will stop working, I assumed that firstly it will start randomly crash and eventually will die, but it turned out that this is not the case. &lt;/P&gt;
&lt;P&gt;So I started to look after new mainboard. I had/have a Socket A Epox board (8KRA2+ if it matters), and I had two options: either find another similar board, or renew my computer to a more recent CPU. After browsing the sites, I could not find a interesting Socket AM2 board (particularly I was looking for a few things: VIA chipset and&amp;nbsp;Firewire on board and no onboard graphics, and don't ask why I want VIA chipset, simply I do not like NVidia on the chipset side, a matter of personal taste), and I searched the Epox Store for another 8KRA2+. Well I found a refurbished 8KRA2+ for a lovely almost 38 bucks. But boy, their S&amp;amp;H is almost 10 dollars. Updating to a AM2 socket would mean a new CPU - ~160$ at that time the cheapest, a new board (not to expensive), a new 1 GB of DDR2 memory, a new graphics board as AGP isn't in style these days and so on. Way out of my budget. So I bought the refurb board and waited to receive it, another few days.&lt;/P&gt;
&lt;P&gt;If you think that this is the happy end you are plain wrong. After receiving the refurb board the nightmare begun. Board started to hang randomly, after a few minutes to few hours. Who knows me might call very well "do not reboot guy", so for me it was pretty annoying to see that the medium time between reboots went down from 12 days to below 7 days in just&amp;nbsp;a week. The hang was so deep, that I had keep the power button pressed for 4 seconds to be able to reset it, as the reset button didn't do it's job while the board locked up. So after another 1 week of diagnosting with Epox support, trying to rule out the possible incompatibility between WD HDD SATA II with the&amp;nbsp;VIA KT600 chipset,&amp;nbsp; I decided to RMA the board. Few days ago I received a new board that works and I'm pretty happy with it. So for almost 55 dollars (including a Fedex&amp;nbsp;ship for RMA) I have my computer working again. I'm not including in this the new HDD, I wanted to upgrade it anyway.&lt;/P&gt;
&lt;P&gt;So right now I should be back in business and blog more frequent.&lt;/P&gt;&lt;img src="http://blogs.mconstantin.eu.org/aggbug.aspx?PostID=978" width="1" height="1"&gt;</description><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/7.aspx">Personal Achievements</category></item><item><title>Linksys WRT54GL</title><link>http://blogs.mconstantin.eu.org/cchrism/archive/2006/07/10/906.aspx</link><pubDate>Tue, 11 Jul 2006 04:40:00 GMT</pubDate><guid isPermaLink="false">84fa4630-d7f3-4739-a4ce-65ab18add461:906</guid><dc:creator>cchrism</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.mconstantin.eu.org/cchrism/comments/906.aspx</comments><wfw:commentRss>http://blogs.mconstantin.eu.org/cchrism/commentrss.aspx?PostID=906</wfw:commentRss><wfw:comment>http://blogs.mconstantin.eu.org/rsscomments/906.aspx</wfw:comment><description>&lt;P&gt;In case you don't know Linksys WRT54GL is the actual version of one of the most routers that kept the headlines a couple of years ago, since Linksys used some GPL code in their firmware and eventually they were forced to release firmware sources and as a consequence a myriad of open source projects started based on the bits published the firmware. This means that you are no longer forced to use whatever a manufacturer decide to release to public, and if you do not like some part you can customize it. Basically WRT54GL can run a linux distribution of course trimmed down to fit the small amount of memory available. &lt;/P&gt;
&lt;P&gt;When I builded my wireless network I decided that this router is the best option, so I bought it. I paired it with another Linksys product a BECMU10 cable modem, a very nice thing of this setup is that the cases are builded to be stacked and they use very little space. Anyway, for&amp;nbsp;49,99 $ after mail-in rebate I do not think I can find a better wireless router at least now. The stock firmware is good but not the best so I started looking for alternate open-source projects. Well, as much as open-source fan I would I think that due the nature of the things (they are not making any money) the marketing is quite short, if at all. So, right now I could not find a comparative analysis between all major open-source firmware for WRT54 in order to decide which is best for me.&lt;/P&gt;
&lt;P&gt;At this stage I oscilate between two different projects: DD-WRT and OpenWRT, and I will try to compare them.&amp;nbsp;As far as I've seen&amp;nbsp;in OpenWRT the WPA(2) support is not free so most likely I will go with DD-WRT, apparently this project has a lot of fans, and I should join it. Do you have other opinions?&lt;/P&gt;&lt;img src="http://blogs.mconstantin.eu.org/aggbug.aspx?PostID=906" width="1" height="1"&gt;</description><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/7.aspx">Personal Achievements</category><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/8.aspx">Networks related</category></item><item><title>Drinking from the firehose - or the latest update on my status</title><link>http://blogs.mconstantin.eu.org/cchrism/archive/2006/05/23/800.aspx</link><pubDate>Tue, 23 May 2006 22:27:00 GMT</pubDate><guid isPermaLink="false">84fa4630-d7f3-4739-a4ce-65ab18add461:800</guid><dc:creator>cchrism</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.mconstantin.eu.org/cchrism/comments/800.aspx</comments><wfw:commentRss>http://blogs.mconstantin.eu.org/cchrism/commentrss.aspx?PostID=800</wfw:commentRss><wfw:comment>http://blogs.mconstantin.eu.org/rsscomments/800.aspx</wfw:comment><description>&lt;P&gt;If you ever wondered why there isn't a lot of activity on this blog lately, even if I said that I will try to be more active, now I'm ready to share the news. Well, the unexpected hapenned and in the past 4 months I've gone through a relocation process to Redmond, WA, United States, and more specifically to Microsoft. If you ever&amp;nbsp;relocated, even for a few miles, you know that there a lot of things to do, starting from giving notices to landlord and utilities, to packing and shipping things, and most important the order of packing things. Personally I learned the hard-way that if you have two types of freight, one that is faster one that is slower, think not twice, but ten times what you put in the faster freight. Now I'm renting houseware until my slower shippment arrives... A relocation that has left me without a computer and any other stuff for a few months, but otherwise a quite successful relocation.&lt;BR&gt;Until I got here, and I was reading other bloggers posts that said about "drinking from the firehose" I thought: "Yeah, that can'be so bad, I mean they are humans too!". After my first days I realized that this is true, the quantity of information is huge and there is a lot to learn and to find. So, I am a Microsoft employee right now.&lt;/P&gt;
&lt;P&gt;And as of today, a lot of things shipped as Beta2 (released at WINHEC2006):&lt;/P&gt;
&lt;P&gt;WinFX Runtime Components&lt;BR&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyId=4A96661C-05FD-430C-BB52-2BA86F02F595&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=4A96661C-05FD-430C-BB52-2BA86F02F595&amp;amp;displaylang=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Visual Studio Extensions&lt;BR&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyId=5C080096-F3A0-4CE4-8830-1489D0215877&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=5C080096-F3A0-4CE4-8830-1489D0215877&amp;amp;displaylang=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Vista:&lt;BR&gt;&lt;A href="http://msdn.microsoft.com/windowsvista/downloads/products/getthebeta/default.aspx#downloadWindowsVista"&gt;http://msdn.microsoft.com/windowsvista/downloads/products/getthebeta/default.aspx#downloadWindowsVista&lt;/A&gt;&lt;BR&gt;You must have MSDN subscription or be part of the Beta program&lt;/P&gt;
&lt;P&gt;Office 2007:&lt;BR&gt;&lt;A href="http://www.microsoft.com/office/preview/beta/getthebeta.mspx"&gt;http://www.microsoft.com/office/preview/beta/getthebeta.mspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Apparently there are other bits that were shipped today and I didn't know (&lt;A href="http://blogs.msdn.com/mswanson/archive/2006/05/23/605150.aspx"&gt;http://blogs.msdn.com/mswanson/archive/2006/05/23/605150.aspx&lt;/A&gt;). &lt;/P&gt;
&lt;P&gt;And if you will be relocating, and need some advice about what to ship first use the feedback form.&lt;BR&gt;Right now I'm back on track so expect more frequent posting here. Keep tuned!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.mconstantin.eu.org/aggbug.aspx?PostID=800" width="1" height="1"&gt;</description><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/6.aspx">Work Related</category><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/7.aspx">Personal Achievements</category></item><item><title>Upgrading to CS 2.0</title><link>http://blogs.mconstantin.eu.org/cchrism/archive/2006/05/11/771.aspx</link><pubDate>Fri, 12 May 2006 00:10:00 GMT</pubDate><guid isPermaLink="false">84fa4630-d7f3-4739-a4ce-65ab18add461:771</guid><dc:creator>cchrism</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.mconstantin.eu.org/cchrism/comments/771.aspx</comments><wfw:commentRss>http://blogs.mconstantin.eu.org/cchrism/commentrss.aspx?PostID=771</wfw:commentRss><wfw:comment>http://blogs.mconstantin.eu.org/rsscomments/771.aspx</wfw:comment><description>&lt;P&gt;I've just finished upgrading my site to Community Server 2.0. Well, my opinions are mixed at this point at least from an "administrator" point of view. Although the interface is more complex and with a lot of new features I was kind of puzzled that out of the box the configuration file is kind of damaged. The fix is straightforward, but still... for a piece of software that wants to be RTM is quite annoying. (For more details you can drilldown on &lt;A href="http://communityserver.org/forums/thread/517078.aspx"&gt;Community Server forum&lt;/A&gt;: ). And, yes, &lt;A href="http://weblogs.asp.net/anjanaram/archive/2006/05/07/445429.aspx"&gt;others&lt;/A&gt; were puzzled by this quality of this release, too.&lt;BR&gt;Anyway, I overcomed all the issues and the upgrade was very smooth. Basically, the longest operation was uploading of the new files, and they are quite a lot. Applying the upgrade script worked flawless. In the same step I've switched to ASP.NET 2.0 so I'm pretty much up to date right now. &lt;BR&gt;As a side note, just after updating the installations I've seen on the Community Server site that they are planning for 2.1 release to be available in July 2006. So I should start planning for the new update. &lt;BR&gt;One of the reason of upgrading to 2.0 version is that I found a very nice tool named &lt;A href="http://www.luzern.co.nz/blogs/dev_blog/archive/2006/03/03/868.aspx"&gt;CS Gallery Manager&lt;/A&gt; that can be used to upload multiple pictures in one step. Although it supports CS 1.1 with a small hack, I thought it's better to upgrade. The great thing of CS Gallery Manager is that it supports both rotate and resize on the fly, so you can keep it on the desktop or laptop machine, plug in the SD card of your camera and you are good to go (actually your pictures :) ). &lt;/P&gt;&lt;img src="http://blogs.mconstantin.eu.org/aggbug.aspx?PostID=771" width="1" height="1"&gt;</description><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/3.aspx">.Text / CS - How to</category><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/7.aspx">Personal Achievements</category></item><item><title>Long time no see</title><link>http://blogs.mconstantin.eu.org/cchrism/archive/2005/06/02/275.aspx</link><pubDate>Thu, 02 Jun 2005 08:10:00 GMT</pubDate><guid isPermaLink="false">84fa4630-d7f3-4739-a4ce-65ab18add461:275</guid><dc:creator>cchrism</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.mconstantin.eu.org/cchrism/comments/275.aspx</comments><wfw:commentRss>http://blogs.mconstantin.eu.org/cchrism/commentrss.aspx?PostID=275</wfw:commentRss><wfw:comment>http://blogs.mconstantin.eu.org/rsscomments/275.aspx</wfw:comment><description>&lt;P&gt;I agree with you. I didn't post here for quite a long time. Actually my schedule was very busy, because I'm trying to graduate my master, and do something useful at work.&lt;/P&gt;
&lt;P&gt;In the last period many things happened: we had a major release (although labeled as minor, for marketing purposes), we are running an optimization iteration, I've been evaluating Visual Studio Beta 2 (BTW, very nice look). I'll try to improve my post rate, but don't hold your breath...&lt;/P&gt;
&lt;P&gt;My next post should be about trying to convert the product I'm working for to .NET Framework Beta 2 and Visual Studio 2005.&lt;/P&gt;&lt;img src="http://blogs.mconstantin.eu.org/aggbug.aspx?PostID=275" width="1" height="1"&gt;</description><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/6.aspx">Work Related</category><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/7.aspx">Personal Achievements</category></item><item><title>miniSD &amp; Smartphone C500</title><link>http://blogs.mconstantin.eu.org/cchrism/archive/2005/02/20/199.aspx</link><pubDate>Sun, 20 Feb 2005 15:31:00 GMT</pubDate><guid isPermaLink="false">84fa4630-d7f3-4739-a4ce-65ab18add461:199</guid><dc:creator>cchrism</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.mconstantin.eu.org/cchrism/comments/199.aspx</comments><wfw:commentRss>http://blogs.mconstantin.eu.org/cchrism/commentrss.aspx?PostID=199</wfw:commentRss><wfw:comment>http://blogs.mconstantin.eu.org/rsscomments/199.aspx</wfw:comment><description>&lt;P&gt;I've bought a 512 MB miniSD&amp;nbsp;card manufactured by ATP and I've placed inside my Orange SPV C500, so now I have much more storage space. Finding a 512 MB miniSD card in stock was quite challenging since many stores listed the item (but temporarly sold out) but I found only in one e-store the item in stock at a resonable price. By the way it was 65 USD with free shipping, and I think it is a good price since the transfer rate&amp;nbsp;they list is quite good (10MB/sec, if I remember correctly).&lt;/P&gt;
&lt;P&gt;Also I've noticed that using this card also gave me more available memory, as now when I restart the phone I have 41% available memory, and with the 16MB card that came with the phone it was around 30%. Did anyone have an explanation or is it magic? So I moved my pictures and now I have space for music also. A Bluetooth headset is on my buying list so I could listen mp3s. A case is also on my list but a 25$ Krusell is quite out of my league.&lt;/P&gt;&lt;img src="http://blogs.mconstantin.eu.org/aggbug.aspx?PostID=199" width="1" height="1"&gt;</description><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/7.aspx">Personal Achievements</category></item><item><title>I attended MSF Course 1846</title><link>http://blogs.mconstantin.eu.org/cchrism/archive/2004/11/18/174.aspx</link><pubDate>Thu, 18 Nov 2004 21:29:00 GMT</pubDate><guid isPermaLink="false">84fa4630-d7f3-4739-a4ce-65ab18add461:174</guid><dc:creator>cchrism</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.mconstantin.eu.org/cchrism/comments/174.aspx</comments><wfw:commentRss>http://blogs.mconstantin.eu.org/cchrism/commentrss.aspx?PostID=174</wfw:commentRss><wfw:comment>http://blogs.mconstantin.eu.org/rsscomments/174.aspx</wfw:comment><description>&lt;P&gt;My blog was quite inactive for a while, and the primary reason is the fact that I find very little free time. Usually, the finish of the year is quite crowded by the work related tasks that are waiting to be finished.&lt;/P&gt;
&lt;P&gt;Last week I attended a Microsoft Course, to be more specific &amp;#8220;1846A - Microsoft Solutions Framework Essentials&amp;#8221;. It was a great offer from Microsoft Romania, offer presented at MSDN Briefing this fall: the only two certified trainers in MSF are working for Microsoft, and they wanted to promote MSF in Romania, and the course was FREE. Yes, you've read correctly, three full days, for FREE. The typical fee for a course like this I've heard that is around 400-500 USD.&lt;/P&gt;
&lt;P&gt;This course can be used in order to achieve the 70-301 exam, a brand new exam, that is for MSF 3.0, and replaces 70-300 exam.&lt;/P&gt;
&lt;P&gt;The course was presented in the Microsoft Romania meeting room, in Bucharest. With this ocasion we could see (we were around 25 people) how is Microsoft Romania from inside. Just like you've heard: there are free beverages, but I couldn't find Coca Cola. Only Pepsi was present in the refrigerator. Maybe people at Microsoft Romania don't like Coca Cola, who knows.&lt;/P&gt;
&lt;P&gt;Well after attending this course many things were clarified to me. The most important thing: you cannot have great products if the whole team doesn't agree on all the aspects. Actually this is the first rule of MSF: all team members (I'm talking about MSF team here) are equally important, and they must agree. If they don't agree, the project is a &amp;#8220;No-go&amp;#8221; without any doubt.&lt;/P&gt;&lt;img src="http://blogs.mconstantin.eu.org/aggbug.aspx?PostID=174" width="1" height="1"&gt;</description><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/6.aspx">Work Related</category><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/7.aspx">Personal Achievements</category></item><item><title>Moving to a new home</title><link>http://blogs.mconstantin.eu.org/cchrism/archive/2004/10/07/160.aspx</link><pubDate>Thu, 07 Oct 2004 15:43:00 GMT</pubDate><guid isPermaLink="false">84fa4630-d7f3-4739-a4ce-65ab18add461:160</guid><dc:creator>cchrism</dc:creator><slash:comments>3</slash:comments><comments>http://blogs.mconstantin.eu.org/cchrism/comments/160.aspx</comments><wfw:commentRss>http://blogs.mconstantin.eu.org/cchrism/commentrss.aspx?PostID=160</wfw:commentRss><wfw:comment>http://blogs.mconstantin.eu.org/rsscomments/160.aspx</wfw:comment><description>&lt;P&gt;Since webmatrixhosting decided to remove accounts after 30 days of trial, I had to find a new home for my site, including my personal blog. I found &lt;A href="http://www.webhost4life.com"&gt;Webhost4life&lt;/A&gt;, which have ASP.NET hosting at resonable price, with 300 MB of storage, SQL Server 2000 database, email and so on. For the moment the main site is not online, but two subdomains: &lt;A HREF=""&gt;blogs.mconstantin.eu.org&lt;/A&gt; and &lt;A href="http://gallery.mconstantin.eu.org"&gt;gallery.mconstantin.eu.org&lt;/A&gt;. Soon, I'll update and the main site.&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.mconstantin.eu.org/aggbug.aspx?PostID=160" width="1" height="1"&gt;</description><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/7.aspx">Personal Achievements</category></item><item><title>nGallery Installed - my personal pictures</title><link>http://blogs.mconstantin.eu.org/cchrism/archive/2004/07/31/159.aspx</link><pubDate>Sun, 01 Aug 2004 06:56:00 GMT</pubDate><guid isPermaLink="false">84fa4630-d7f3-4739-a4ce-65ab18add461:159</guid><dc:creator>cchrism</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.mconstantin.eu.org/cchrism/comments/159.aspx</comments><wfw:commentRss>http://blogs.mconstantin.eu.org/cchrism/commentrss.aspx?PostID=159</wfw:commentRss><wfw:comment>http://blogs.mconstantin.eu.org/rsscomments/159.aspx</wfw:comment><description>I've just finished installing &lt;A href="http://www.ngallery.org"&gt;nGallery&lt;/A&gt;. In case you didn't know nGallery is a&amp;nbsp;FREE and OPEN SOURCE&amp;nbsp;ASP.NET Image Gallery written in C#. Getting it to work along with .Text was a little bit tricky but it worked after all. So if you want to see some of my pictures: &lt;A href="http://gallery.mconstantin.eu.org/"&gt;http://gallery.mconstantin.eu.org/&lt;/A&gt; &amp;nbsp;&lt;A href="http://cchr"&gt;&lt;/A&gt;&lt;img src="http://blogs.mconstantin.eu.org/aggbug.aspx?PostID=159" width="1" height="1"&gt;</description><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/7.aspx">Personal Achievements</category></item><item><title>End of FREE "Brainbenching" period</title><link>http://blogs.mconstantin.eu.org/cchrism/archive/2004/07/19/157.aspx</link><pubDate>Mon, 19 Jul 2004 22:23:00 GMT</pubDate><guid isPermaLink="false">84fa4630-d7f3-4739-a4ce-65ab18add461:157</guid><dc:creator>cchrism</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.mconstantin.eu.org/cchrism/comments/157.aspx</comments><wfw:commentRss>http://blogs.mconstantin.eu.org/cchrism/commentrss.aspx?PostID=157</wfw:commentRss><wfw:comment>http://blogs.mconstantin.eu.org/rsscomments/157.aspx</wfw:comment><description>&lt;P&gt;After 14 days of free Brainbench, the results are:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Certfied as .NET programmer (this was my main target)&lt;/LI&gt;
&lt;LI&gt;16 tests completed, 6 @ Master level&lt;/LI&gt;
&lt;LI&gt;3 more exams required to be certified as &amp;#8220;Systems architect&amp;#8220;: Network Monitoring, Software Business Analysis, and one elective (from 3 possible options)&lt;/LI&gt;
&lt;LI&gt;1 more exam required for &amp;#8220;Linux System Administrator&amp;#8220;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;In conclusion, I'm satisfied with the results.&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;&lt;img src="http://blogs.mconstantin.eu.org/aggbug.aspx?PostID=157" width="1" height="1"&gt;</description><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/7.aspx">Personal Achievements</category></item><item><title>Brainbenching</title><link>http://blogs.mconstantin.eu.org/cchrism/archive/2004/07/09/156.aspx</link><pubDate>Sat, 10 Jul 2004 05:16:00 GMT</pubDate><guid isPermaLink="false">84fa4630-d7f3-4739-a4ce-65ab18add461:156</guid><dc:creator>cchrism</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.mconstantin.eu.org/cchrism/comments/156.aspx</comments><wfw:commentRss>http://blogs.mconstantin.eu.org/cchrism/commentrss.aspx?PostID=156</wfw:commentRss><wfw:comment>http://blogs.mconstantin.eu.org/rsscomments/156.aspx</wfw:comment><description>&lt;P&gt;As you already should know, between 1st and 14th of July 2004 all tests of Brainbench are &lt;FONT color=#ff0000 size=4&gt;&lt;STRONG&gt;FREE&lt;/STRONG&gt;&lt;/FONT&gt;! &lt;BR&gt;I tried the plan feature of the Brainbench and I must say that is very cool. So far I selected four job roles: .NET Programmer, Systems Architech, Network Administrator and Linux System Administrator. My main target is to finish &amp;#8220;.NET Programmer&amp;#8221; Role, others if it is possible. I graduated all electives, and I have 5 more required: &amp;#8220;Business Communication&amp;#8220;, &amp;#8220;Listening skills&amp;#8220;, &amp;#8220;Programmer analyst aptitude&amp;#8220;, &amp;#8220;Programming concepts&amp;#8220; and &amp;#8220;Written English&amp;#8220;.&lt;/P&gt;
&lt;P&gt;I've got 4.53 at ASP.NET and 4.6 at ADO.NET. For the others I'm not so proud, but still... I'm not perfect.&lt;/P&gt;
&lt;P&gt;I won't update the post, so in order to see my latest achievments and if I got the .NET Programmer role after all, check at &lt;A href="http://www.brainbench.com/xml/bb/transcript/public/viewtranscript.xml?pid=191487"&gt;http://www.brainbench.com/xml/bb/transcript/public/viewtranscript.xml?pid=191487&lt;/A&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;&lt;img src="http://blogs.mconstantin.eu.org/aggbug.aspx?PostID=156" width="1" height="1"&gt;</description><category domain="http://blogs.mconstantin.eu.org/cchrism/archive/category/7.aspx">Personal Achievements</category></item></channel></rss>