Half of Windows 7 machines do not run AV software

Microsoft Development, Software Events
Half of Windows 7 machines do not run AV software It has been disclosed by Microsoft that Windows older desktop operating systems remains more vulnerable to malware as of today.  The majority of users are still running older versions of Windows, without necessarily using up to date security software which is Anti-Virus packages. In its latest Security Intelligence Report, the company revealed that among all Windows 7 and Windows Vista PCs reporting statuses other than “Protected” to Microsoft, more than half of them have no type of protected software installed at all, which is pretty massive. Starting with Windows 8, Microsoft decided to turn on Windows Defender by default when no other anti-malware software is present. The majority of unprotected Windows 8 and Windows 8.1 PCs have their anti-malware software turned…
Read More

C# 8.0 Previewed

Software development Concepts, Software Events
C# 8.0 Previewed Originally written in www.infoq.com, some amazing stuff coming down the pipe for C#. Nullable Reference Types We’ve covered nullable reference types in the past, but briefly the idea is that reference types would no longer be nullable by default. Instead, you have to explicitly mark them as nullable using the same “Type?” syntax that you use for nullable value types. Assigning a null to a non-nullable reference type will be a compiler warning. Likewise, reading from a nullable type would be a compiler warning unless the variable in question was explicitly checked for null ahead of time. So theoretically the only change developers need to make is to sprinkle question marks where appropriate. Since our report, a new syntax was added to this feature. Consider a scenario where you know…
Read More