Sign in
MSDN Magazine
The official blog of MSDN Magazine
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.NET
Announcements
ASP.NET
C++
concurrency
Conferences
data services
Editor's Choice
Editor's Notes
LINQ
mobile apps
Office
performance
Security
SharePoint
Silverlight
SQL Server
Testing
Thoughts
Threading
Visual Basic
Visual Studio
WCF
Windows Mobile
WPF
Archive
Archives
May 2013
(1)
April 2013
(2)
March 2013
(3)
February 2013
(2)
January 2013
(2)
October 2012
(5)
September 2012
(1)
June 2012
(2)
May 2012
(2)
April 2012
(5)
March 2012
(4)
February 2012
(3)
January 2012
(7)
November 2011
(4)
October 2011
(4)
September 2011
(16)
August 2011
(7)
March 2011
(2)
February 2011
(1)
January 2011
(1)
December 2010
(1)
October 2010
(1)
July 2010
(6)
June 2010
(2)
May 2010
(5)
April 2010
(2)
March 2010
(5)
December 2009
(1)
November 2009
(1)
October 2009
(3)
September 2009
(2)
August 2009
(1)
March 2009
(1)
December 2008
(9)
November 2008
(15)
October 2008
(14)
September 2008
(12)
August 2008
(14)
July 2008
(18)
June 2008
(18)
May 2008
(14)
April 2008
(15)
March 2008
(14)
February 2008
(14)
January 2008
(14)
December 2007
(12)
November 2007
(12)
October 2007
(16)
September 2007
(11)
August 2007
(15)
July 2007
(7)
June 2007
(9)
May 2007
(13)
April 2007
(7)
March 2007
(15)
February 2007
(6)
January 2007
(17)
December 2006
(6)
November 2006
(9)
October 2006
(6)
MSDN Blogs
>
MSDN Magazine
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
MSDN Magazine
Creating a Custom Fuzz Test Interface Provider
Posted
over 6 years ago
by
MSDNMagazine
0
Comments
These days, fuzzing is most frequently used to validate file and network parsers - literally piping a random source of binary data into the parser and then seeing what happens. In the November issue of MSDN Magazine, Dan Griffin takes a look at the extensibility...
MSDN Magazine
Code Reviews Help Find and Fix Vulnerabilities in Your Apps
Posted
over 6 years ago
by
MSDNMagazine
1
Comments
Small coding errors can result in critical vulnerabilities that can compromise the security of not just entire systems, but even entire companies. Security vulnerabilities are not typically caused by a single error, but rather by a sequence of errors...
MSDN Magazine
CLR Inside Out: Managing .NET object lifetime
Posted
over 6 years ago
by
MSDNMagazine
2
Comments
Although the .NET Framework provides a managed execution environment, it is important to use resources carefully and consider whether you need to proactively manage the lifetime of any objects created by your code. In the November issue of MSDN Magazine...
MSDN Magazine
Analyze Crashes to Find Security Vulnerabilities in Your Apps
Posted
over 6 years ago
by
MSDNMagazine
1
Comments
How can you make sure a crash in your program is not exploitable? The short answer is simple: assume every crash is exploitable and just fix it! In the November issue of MSDN Magazine, Adel Abouchaev , Damien Hasse , Scott Lambert , and Greg Wroblewski...
MSDN Magazine
Now hiring: Senior Editor for MSDN Magazine
Posted
over 6 years ago
by
MSDNMagazine
7
Comments
MSDN Magazine is actively seeking a new Senior Editor to join our team. This is an exciting opportunity to play a pivotal roll in the continued growth and success of the world's leading publication for Microsoft developers. As a Senior Editor, your responsibilities...
MSDN Magazine
MOSS 2007 workflow development training
Posted
over 6 years ago
by
MSDNMagazine
2
Comments
Microsoft Office SharePoint Server (MOSS) 2007 is an industry leading platform for collaboration, but it's also a powerful application platform for .NET developers. One of the new features of MOSS 2007 is the ability to include custom forms in workflows...
MSDN Magazine
Bugslayer: Measuring the Impact of View State
Posted
over 6 years ago
by
MSDNMagazine
1
Comments
The .NET Framework is often thought of as an environment where you don't have to think about memory, yet memory issues continue to plague managed applications. Why? In the November issue of MSDN Magazine, John Robbins presents a tool that lets you look...
MSDN Magazine
Concurrent Affairs: Simplified asynchronous programming model (APM) with C#
Posted
over 6 years ago
by
MSDNMagazine
1
Comments
Performing I/O-bound operations asynchronously is key to producing scalable and responsive applications, and the APM allows you to use a very small number of threads to execute a large amount of work without blocking any of the threads. In the November...
MSDN Magazine
November 2007 MSDN Magazine now online
Posted
over 6 years ago
by
MSDNMagazine
3
Comments
The November 2007 issue of MSDN Magazine is now available online at http://msdn.microsoft.com/msdnmag/issues/07/11/default.aspx . November brings our 2007 Security Issue, featuring a range of security related topics from code review best practices to...
MSDN Magazine
Windows Mobile: Adjust ring volume according to the ambient noise level
Posted
over 6 years ago
by
MSDNMagazine
1
Comments
Doesn't it always seem like, when you're having a quiet, relaxing moment, your mobile phone starts ringing at full volume? So much for mellowing out. Or you're in a crowded room and your phone rings too quietly to hear? That was your date calling? She...
MSDN Magazine
Test Run: Test automation with Windows XP Embedded
Posted
over 6 years ago
by
MSDNMagazine
4
Comments
Windows XP Embedded is essentially a developer-customized, slimmed-down version of the Windows XP operating system intended for use on devices like game consoles, information kiosks, network appliances, and the like. With the rapid growth in the use of...
MSDN Magazine
Improve Scalability With New Thread Pool APIs
Posted
over 6 years ago
by
MSDNMagazine
2
Comments
Windows Vista and the upcoming Windows Server 2008 include a new thread pool API that should make it much easier for developers to employ the thread pool effectively. In the October issue of MSDN Magazine, Robert Saccone shows you how the new thread pool...
MSDN Magazine
Optimizing Managed Code For Multi-Core Machines
Posted
over 6 years ago
by
MSDNMagazine
1
Comments
Multi-cpu systems and multicore processors are becoming ever more common, but writing code that actually takes advantage of those multiple processors is still considered arcane and unintuitive. In the October issue of MSDN Magazine, Daan Leijen and Judd...
MSDN Magazine
Basic Instincts: Type inference in Visual Basic 2008
Posted
over 6 years ago
by
MSDNMagazine
1
Comments
To support Language Integrated Query (LINQ), a suite of new technologies was added to the upcoming release of Visual Basic 2008 that includes type inference. With type inference, the types of method-level members are inferred based on the right-hand side...
MSDN Magazine
.NET Matters: Deadlock monitor
Posted
over 6 years ago
by
MSDNMagazine
1
Comments
A reader asks: I'm using locks in my application to synchronize work on a bunch of threads. Unfortunately, I'm doing something incorrectly and my threads seem to just stop sometimes. I think I'm running into deadlocks, but I'm not sure how to find them...
MSDN Magazine
Data Points: Common Table Expressions
Posted
over 6 years ago
by
MSDNMagazine
2
Comments
Common Table Expressions (CTEs) can help improve the readability (and thus the maintainability) of SQL statements without compromising performance. They also make writing recursive code in T-SQL significantly easier than it was in previous versions of...
MSDN Magazine
Running Queries On Multi-Core Processors With PLINQ
Posted
over 6 years ago
by
MSDNMagazine
2
Comments
Multi-core processors are here. Responding to the increased availability of multi-processor platforms, Parallel Language Integrated Query (PLINQ) is a query execution engine that accepts any LINQ-to-Objects or LINQ-to-XML query and automatically utilizes...
MSDN Magazine
Dev Tools for Your Toolbox
Posted
over 6 years ago
by
MSDNMagazine
3
Comments
Every month in MSDN Magazine , our Toolbox column , written by Scott Mitchell , highlights handy utilities that simplify development tasks and extend the reach of your applications. In the October installment of Toolbox , Scott shows you a tool for accessing...
MSDN Magazine
Building more responsive WPF apps with Dispatcher
Posted
over 6 years ago
by
MSDNMagazine
1
Comments
No matter what type of long-running processes are involved—whether getting large results from a database, making asynchronous Web service calls, or any number of other potentially intensive operations—making your application more responsive is guaranteed...
MSDN Magazine
Netting C++: Describing the EEK!-osystem
Posted
over 6 years ago
by
MSDNMagazine
1
Comments
Continuing his development of a mouse and mouse environment simulation called EEK!, in the October issue of MSDN Magazine, Stan Lippman explains how he's creating the XML document describing the environment . Stan also describes another way of incorporating...
MSDN Magazine
Windows with C++: Task Scheduler 2.0
Posted
over 6 years ago
by
MSDNMagazine
0
Comments
The new Task Scheduler 2.0 in Windows Vista is no longer just a simple tool for end users. It now provides a powerful platform for designing and managing complex background operations, and in some cases can replace the need for Windows services. In the...
MSDN Magazine
October 2007 MSDN Magazine now online
Posted
over 6 years ago
by
MSDNMagazine
1
Comments
The October 2007 issue of MSDN Magazine is now available online at http://msdn.microsoft.com/msdnmag/issues/07/10/default.aspx . In this issue you'll find coverage of some advanced concurrency topics. We have articles on employing the new thread pool...
MSDN Magazine
{ yield return omission; } ??
Posted
over 6 years ago
by
MSDNMagazine
3
Comments
And now that I've got your attention, I want to pick your brain about a couple things. I'm in the process (hopefully close to the end of the process) of getting the 2008 column plan solidified for MSDN Magazine. First, a little context. ...
MSDN Magazine
Blogging the Articles: What do you think?
Posted
over 6 years ago
by
MSDNMagazine
5
Comments
For the past month or so we've been blogging about each of the articles in the current issue. I was hoping this would give each one a bit more special attention than it gets in the table of contents. Plus, it gives us a chance to highlight related information...
MSDN Magazine
Foundations: Workflow Communications
Posted
over 6 years ago
by
MSDNMagazine
3
Comments
Workflows are meant to coordinate systems and people, and that means communicating beyond the boundaries of the workflow instance itself. Communication is a key component of most workflows. In the September issue of MSDN Magazine, Matt Milner takes you...
Page 13 of 18 (436 items)
«
11
12
13
14
15
»