How the 9-to-5 workday has disappeared

Software development Concepts, Software Events
How the 9-to-5 workday has disappeared   Work has changed dramatically over the last few decades, according to a report in The Wall Street Journal recently release it has become more time-consuming, less stable, and more flexible. In 1973, 6% of Americans said they worked excessive hours while in 2016, 26% said they worked more than 48 hours a week. Insurance coverage by employers has also dropped since 1973, although companies now provide more benefits to aid work-life balance, such as paid parental leave and remote work options. Businesses are spending less on employees, both in terms of compensation and capital investment, while investors get triple the payout from 30 years ago. This has all contributed to workers increasingly acting like free agents in the job market.  While they have…
Read More

New iPhone will be announced soon

Software Events, Software Releases
New iPhone will be announced soon   September 12th a very important date to mark on your calendar.  That’s when Apple will host its next media event, at the Steve Jobs Theater on its new Cupertino campus, where it’s expected to unveil three new iPhone models, the third-generation Apple Watch, and an upgraded Apple TV with support for 4K and HDR display technologies. With new iPhones just days away from being officially revealed, a Bloomberg journalist has reported what he saw in images of the expected new high-end model. The key change is said to be the removal of the Home button, which has been rumored before. However, Bloomberg goes into fine detail on accompanying gestural changes on the software side. Click here to read more about this. Even if you’re planning…
Read More

Visual Studio 2017 Version 15.3 Released

Microsoft Development, Software Events
Visual Studio 2017 Version 15.3 Released For Visual Studio 2017 version 15.3, Microsoft focused on improving accessibility, particularly using Visual Studio with the most popular screen readers. Microsoft made over 1,700 improvements but if you are using Visual Studio 2017 in a low-vision or no-vision mode, a lot has improved. Couple of the more major things Microsoft improved. Debugging is much more accessible. Debugger windows like the Call Stack, Locals, Autos, and Watch windows were inaccessible to screen readers. That’s now fixed. The VS editor’s text adornments let developers know about features available at particular points on a line of code, such as breakpoints, lightbulbs, and error and warning “squiggles.” Customers can now discover and navigate between these adornments via the new “Show Line Annotations” command set, which you can…
Read More

New WinDbg debugger available in preview!

Microsoft Development
New Microsoft debugger WinDbg available in preview! Debugging Tools for Windows Microsoft is excited to announce a preview version of a brand new WinDbg a Windows debugger.  WinDbg has more modern visuals, faster windows, a full-fledged scripting experience, built with the easily extensible debugger data model front and center. Things to know Installation - You can install the WinDbg Preview from the store if you have Windows 10 Anniversary Update or newer at https://www.microsoft.com/en-us/store/p/windbg/9pgjgd53tn86 - WinDbg Preview uses some features from the Windows 10 Anniversary Update, so that’s required for now. Feedback - Familiarize yourself a bit with the Feedback Hub!  Microsoft will be using the Feedback Hub to help prioritize what you want Microsoft to work on! The Windows Insider website has a great overview on how to give good feedback - https://insider.windows.com/en-us/how-to-feedback Once you've read that, just hit the 'Feedback Hub' button…
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