Software
Looking for a faster antivirus
The antivirus is one of the most important software that should be on installed on any computer. I doesn’t matter if you’re using Windows XP, Vista or Linux. “Fences” like the UAC or sudo aren’t that strong because they’ll just ask if you want to allow a program to run in privileged mode, they won’t tell you what that program will do.
For the last 5-6 years, I’ve been a fan of Kaspersky Antivirus and I recommended it to everybody. Many friends replied that it uses to many resources and the PC runs slow, but the trick was to set More >
Static constructors: populating static collections
Static Constructors
As Wikipedia explains, a constructor is a special method that is used to initialize member data. This member data can be object’s data, i.e. for each individually object (instance of a class) these fields are initialized with specific values, or class’s data known as static data, available to all instance objects as 1 global resource.
We all know object constructors, but are there any other constructors? Well, YES: static constructors!
Static constructors are used like “normal” constructors, but are prefixed with the keyword “static” and are used to initialize static members. This initialization occurs when the class More >
.NET Concurrency Study
A couple weeks ago, my colleague Vasile Sumanschi (Schumi) and I held two presentations regarding the concurrency models in Java and .NET. This was part of the Parallel & Distributed Computing Architectures course.
Schumi handled the Java part, while I went on the .NET path. The presentations turned into a discussion and we had a friendly versus between the 2 (Java & .NET). Unfortunately the time was not sufficient for such a vast subject.
The study is a compilation of the documentation available on the MSDN Library, articles on MSDN Magazine, concurrency chapters from the books More >
Quickly recover data from broken OS
Broken Windows / Linux or some other OS? I’ve faced this problem at least a dozen times. In these situations my best advice is to completely reinstall the OS.
But first you need to…
- recover data
- check your computer for hardware problems
I’ve just returned from my cousin, where a computer crashed. Because there was some important info she needed to recover, she called me before taking the PC to Service. I had 2 posibilities:
- take the HDD out, physically mount it in another PC, save data and then place it back, or..
- boot Linux from
Software Projects Management using MSF & VSTS
I’ve just completed a 3 day training on the Management of Software Projects using Microsoft Solutions Framework and Visual Studio Team System.
This training (or seminar) was organized by Microsoft Romania and it was intended for software pros from the area of Cluj-Napoca. Myself, along with a couple of other Microsoft Student-Partners, were lucky enough to receive an invitation.
The trainer was Adi Stoian from TechReady. I’ve previously met Adi last November at the TechEd Developers Conference in Barcelona.
I More >