Sign In
AppDev: Something You Should Know by Irena Kennedy
Everything that is related to application development, and other cool stuff...
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
.NET
Application Development
Async
Config
Deployment
Environment
RIA
Silverlight
SQL
Telerik
TFS
Tools
Visual Studio
VSTS
WCF
Web
Archive
Archives
March 2012
(1)
January 2012
(2)
April 2011
(1)
March 2011
(2)
October 2010
(1)
September 2010
(1)
August 2010
(2)
December 2009
(4)
November 2009
(1)
September 2009
(1)
June 2009
(2)
April 2009
(1)
December 2008
(2)
February 2008
(1)
October 2007
(3)
September 2007
(1)
August 2007
(7)
July 2007
(5)
June 2007
(8)
May 2007
(19)
April 2007
(42)
March 2007
(43)
February 2007
(33)
January 2007
(21)
December 2006
(7)
November 2006
(20)
October 2006
(22)
September 2006
(20)
August 2006
(23)
July 2006
(19)
June 2006
(12)
May 2006
(22)
April 2006
(20)
March 2006
(23)
February 2006
(20)
January 2006
(21)
December 2005
(14)
November 2005
(19)
November, 2005
MSDN Blogs
>
AppDev: Something You Should Know by Irena Kennedy
>
November, 2005
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
AppDev: Something You Should Know by Irena Kennedy
SYSK 18: CLR “discrimination” of large objects
Posted
over 7 years ago
by
irenake
0
Comments
Did you know that large objects (those that are 85,000 bytes or larger) are allocated from a special large object heap. Objects in this heap are finalized and freed just like the small objects. However, large objects are never compacted because shifting...
AppDev: Something You Should Know by Irena Kennedy
SYSK 17: Do you C++?
Posted
over 7 years ago
by
irenake
0
Comments
If yes, then this read is for you -- http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1745.pdf . It’s a “Proposed Draft Technical Report on C++ Library Extensions” document.
AppDev: Something You Should Know by Irena Kennedy
SYSK 16: How StringBuilder works, or on the importance of StringBuilder initialization
Posted
over 7 years ago
by
irenake
0
Comments
We all know that strings in .NET are immutable; i.e. code that appears to change a String actually makes another one, leaving the old one for garbage collection. To improve string concatenation performance, Microsoft has a StringBuilder class. Did...
AppDev: Something You Should Know by Irena Kennedy
SYSK 15: Show me the … Open Windows!
Posted
over 7 years ago
by
irenake
0
Comments
Did you know that pressing Ctrl+Alt+Down Arrow in Visual Studio 2005 opens a window in the upper right corner that contains the names of all the open windows? Same result can be achieved by executing Window.ShowEzMDIFileList command… Source: http:...
AppDev: Something You Should Know by Irena Kennedy
SYSK 14: The easiest way to sign your assembly
Posted
over 7 years ago
by
irenake
0
Comments
Did you know that you no longer need to leave VS and use SN.exe to create a strong key to sign an assembly? Simply, go to Project Properties , select the Signing Pane , and check Sign the Assembly check box. From the Choose a strong name key file dropdown...
AppDev: Something You Should Know by Irena Kennedy
SYSK 13: Cool Products: Wi-Fi Finders
Posted
over 7 years ago
by
irenake
0
Comments
Want to check for wireless connectivity without opening up your laptop? Check out these “hotspot locators”, that’s small enough to fit on your key ring -- http://www.pcmag.com/article2/0,1895,1886797,00.asp
AppDev: Something You Should Know by Irena Kennedy
SYSK 12: Office 12 chooses Open XML
Posted
over 7 years ago
by
irenake
0
Comments
Did you know that default file format for the next version of its Office Suite would be XML? The old, binary format will still be available, but the default will now be Open XML. The Office Open XML format is public and royalty-free, and the XML-formatted...
AppDev: Something You Should Know by Irena Kennedy
SYSK 11: Is now the time for Binary XML?
Posted
over 7 years ago
by
irenake
0
Comments
Back in the last century, we talked about XML as being “human readable” and “self-describing”… Well, W3C went binary on XML ( http://www.w3.org/2003/07/binary-xml-cfp.html ). People talked about it since 1999 (may be earlier); and now with mobile device...
AppDev: Something You Should Know by Irena Kennedy
SYSK 10: Automating nightly builds
Posted
over 7 years ago
by
irenake
0
Comments
Sounds like a great idea? Then check out this article, which describes the creation of a command-line tool that makes generating nightly builds from the code stored in Microsoft Visual Studio Team Foundation Server -- http://msdn.microsoft.com/library...
AppDev: Something You Should Know by Irena Kennedy
SYSK 9: Multiple column searches with one WHERE clause?
Posted
over 7 years ago
by
irenake
0
Comments
Yes, SQL 2005 can do that! Here is an example (yes, it’s not very logical, but it gives you an idea on what you can do with the contains clause)… USE AdventureWorks; GO SELECT Production.Product.ProductID, Name FROM Production.Product LEFT JOIN...
AppDev: Something You Should Know by Irena Kennedy
SYSK 8: .NET Generics = C++ Templates?
Posted
over 7 years ago
by
irenake
0
Comments
First, if you are a not familiar with generics, or would like a refresher course, check out “Overview of Generics in the .NET Framework” at http://msdn2.microsoft.com/en-us/library/ms172193 . For overview on templates, visit http://msdn.microsoft.com...
AppDev: Something You Should Know by Irena Kennedy
SYSK 7: Tool Time – .NET Reflector
Posted
over 7 years ago
by
irenake
0
Comments
Reflector is a class browser for .NET components. It supports assembly and namespace views, type and member search, XML documentation, call and callee graphs, IL, Visual Basic, Delphi and C# decompiler, dependency trees, base type and derived type hierarchies...
AppDev: Something You Should Know by Irena Kennedy
SYSK 6: Summary of agile methodologies
Posted
over 7 years ago
by
irenake
0
Comments
Agile Manifesto ( http://AgileManifesto.org ): - Individuals and interactions over processes and tools - Working software over comprehensive documentation - Customer collaboration over contract negotiation - Responding to change over following a plan...
AppDev: Something You Should Know by Irena Kennedy
SYSK 5: Do you have rootkits?
Posted
over 7 years ago
by
irenake
0
Comments
Rootkit software uses a variety of techniques to gain access to a system and then cover up any traces of its existence so that it cannot be detected by system tools or antivirus software. Check out this article (strongly recommended) -- http://www...
AppDev: Something You Should Know by Irena Kennedy
SYSK 4: Why are the read only-cursors (i.e. "firehose cursors") faster than server side cursors?
Posted
over 7 years ago
by
irenake
1
Comments
Because with “firehose cursors”, when the query is executed, the results are immediately (i.e. without a FETCH command) sent to pre-reserved network buffers, read by the client (i.e. . Network write operations will succeed and free up used buffers as...
AppDev: Something You Should Know by Irena Kennedy
SYSK 3: Resumable file downloads
Posted
over 7 years ago
by
irenake
0
Comments
Did you know that the HTTP specification defines a method to download any part of the file located on a web server? So, if a client is downloading a large file, and the connection is broken, they can continue from the last successfully downloaded byte...
AppDev: Something You Should Know by Irena Kennedy
SYSK (Something You Should Know) 1: What is a Digital Locker
Posted
over 7 years ago
by
irenake
0
Comments
“The Digital Locker is an upcoming service, now being previewed, that will be released on Windows Marketplace in the Windows Vista timeframe. It allows customers to purchase software online using the familiar shopping cart model, then safely stash their...
AppDev: Something You Should Know by Irena Kennedy
SYSK 2: A word on versions – deployment, assembly, file…
Posted
over 7 years ago
by
irenake
5
Comments
Assembly version , a.k.a. product version is used by CLR when loading dependent assemblies. As in .NET 1.X, you can see/change the ProductVersion in assembly manifest by using [assembly:AssemblyVersion(“2.1.6.432”)] attribute. In VS2005, there is now...
AppDev: Something You Should Know by Irena Kennedy
Welcome to "AppDev: Something You Should Know" blog
Posted
over 7 years ago
by
irenake
0
Comments
If you’re anything like me, you love technology, but you feel that with all the other obligations, it’s getting harder and harder to stay up on all the cool staff coming out from Microsoft and the industry, in general. You try to read magazines, visit...
Page 1 of 1 (19 items)