Ramblings of a .NET developer
Wednesday, April 3, 2013
Apple app store - quick app review
Tuesday, February 7, 2012
HAM Radio!!!
Tuesday, July 26, 2011
ASP.NET webdev server as an external tool
The ASP.NET development server is a very useful tool but now and then I find that I need to use a service or website that I’m developing in another solution than in the one I’m working in. I found that it is easiest just to add the instances of often used services and websites to the external tools list in Visual Studio.
To do this go to the Tools menu in Visual Studio and click on External Tools.
Then click the Add button to add a new item. Give it a title and enter as a command the following:
C:\Program Files (x86)\Common Files\microsoft shared\DevServer\10.0\WebDev.WebServer40.EXE
The path may differ depending on your windows version and installation. I'm using Windows 7 with Visual Studio 2010.
The arguments should be:
/port:XXXXX /path:SSSSS /vpath:/
Where XXXXX is a port number used for the development web server and SSSSS is the web server / web service path. The /vpath points to the application root of the service or site
For instance:
/port:21000 /path:C:\Sources\MyProject\WcfHost /vpath:/
Now you can start the service from any solution and you don’t need to keep the solution in which the service or site is made open. Just remember at some point to stop the development server again because it will not stop automatically by closing Visual Studio.
Sunday, July 24, 2011
Wordpress or .NET, that's the question!
Let’s be honest, you can make wonderful websites in .NET but you need a good CMS behind it and a good framework at the front end to quickly make websites with it. If you don’t have this, making a site is a lot of work, maintaining it even more!
In Wordpress on the other hand I can make a good looking, company website in a few hours. This includes registering the URL, putting the website with a hosting company, making the site, doing the styling and putting the first content in it. The downside of a CMS like Wordpress is that making it look and do EXACTLY what you want also involves a lot of work, and with Wordpress you’re stuck with a “simple” scripting language like PHP. PHP doesn’t come close to the powerful languages you have in .NET!
So I decided to cover both sides of the market; the quick and “limited” side of Wordpress and the not so quick but very powerful side of .NET. I will just let it depend on the wallet of the customer!
At the moment I love doing both things so it’s also making my work a lot more interesting!
Friday, June 3, 2011
“The Net”, made by Apple? ;)
It was funny to see though that even the viruses that were used in the movie were Mac viruses. A bit unbelievable of course because everybody knows that almost no viruses were made for the Mac! Even more unrealistic was that the same Mac virus that was captured in the beginning of the movie crashed a mainframe at the end of it.
All in all the movie was enjoyable and more realistic when it comes to computers, hacking and programming than most, but I guess software developers like me notice only the inconsistencies.
Friday, May 20, 2011
My own little unix server
After using the Macbook Pro for some months I found out that OSX has a problem; every now and then the Hard disk gets corrupted. I think this might have to do with the fact that OSX originally used to be Unix; a server OS. Unix Servers are made to run continuously,no administrator turns of his servers at the end of the day, but I do turn of my Macbook!
Especially when you hibernate your Mac, now and then you will get the dreaded message saying The volume Macintosh HD was found corrupt and needs to be repaired. Now in most situations repairing will go ok and after that it’s business as usual. But once in a while this will not work and you need to restore the time machine backup you of course made, didn’t you? Because my notebook harddisk is 1TB this can take hours and hours! Did I tell you I hate waiting?!
After already resigning to the fact that every now and then it would be necessary to do a restore of my backup I stumbled upon a great little tool. The look and feel took me back a bit to the old MSDOS days (no graphics, everything character based) but who cares if it works. The tool is called AppleJack ( http://applejack.sourceforge.net ) and is OpenSource (which means free!).
After installing it you need to start up the Macbook holding the CMD-S keys. The Mac will start in single user, character based mode. Type ‘applejack’ at the prompt and a small and simple menu will show. Chose option ‘a’ for ‘autopilot’ and the whole repair cycle will start. I found that 99 out of 100 this will repair everything and withing 10 minutes it’s back to business as usual; I just love this tool!
Saturday, April 30, 2011
Stored procedures or Embedded SQL???
The DBA department made one stored procedure per table to select everything and one to select records on bases of their primary key. All other stored procedures that were necessary for an application were made by developers, but before they could be used in a production environment the DBA’s reviewed them. This way the DBA’s could keep an eye on how different tables were used and how this was affecting the database / DBMS. If necessary they optimized the stored procedures or just sent it back to the developers to have them optimize it themselves. In general this made for optimized stored procedures with a uniform way of coding in them. I liked this way of working and try to do this also with other clients, if they allow me to do this of course.
In general for me the advantages of stored procedures are:
- Security (only expose stored procedures to the big bad world outside, nothing else)
- Speed; because the DBMS optimizer makes a one time plan for execution (this has advantages and disadvantages but that’s another discussion altogther)
- Reusable code / procedures.
- Reviewable code. Reviewable by DBA’s that have the right knowledge for optimizing stored procedures. No .NET or other knowledge is necessary for these reviews!
….
So according to me we should use stored procedures more often!