|
|
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
32 Articles match "Memory"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential LINQ with the Entity Framework
Learn to combine flavors of LINQ to query and transform in-memory collections, XML data sources, and relational databases. Now we can group, sort, and filter in-memory collections of objects. In this course, you learn to: Leverage new features of C# 3.0, Learn to develop applications for EF and LINQ to Entities and employ ADO.NET Data Services to integrate data from the Internet cloud. Apply techniques for building real-world data-driven applications, including ASP.NET and WPF data binding. You'll get answers to these questions: When should I use LINQ instead of "classic" ADO.NET?
DevelopMentor Courses
- Friday, June 12, 2009
Foundations of C# Programming and the.NET Framework
Here we discuss the details of value types: creation, initialization, efficiency, memory usage, assignment, comparison, and conversion to/from Object. less code!) Distinguish between "implementation inheritance" and "interface inheritance" Use ADO.NET to connect to SQL Server and run a simple query Build a basic Windows Forms GUI Essential C# is ".NET NET 101" for developers moving to.NET. Explore core C# features like classes, inheritance, namespaces, and events. Discuss fundamental concepts such as the Common Language Runtime (CLR), garbage collection, and deployment. interface vs.
DevelopMentor Courses
- Friday, June 12, 2009
Fast Track to IIBA™ Certification Training
The Fast Track to IIBA TM Certification course is designed using proven memory enhancing techniques. Gain valuable insight into the BABOK TM in preparation for the IIBA TM certification exam Enhance retention of BABOK TM key tasks, definitions, and technique strengths/weaknesses Access hundreds of practice questions Walk away with a completed set of Flash-Fill cards to refresh what you?ve To prepare for a successful exam, you must be well versed in all the tasks and techniques presented in the body of knowledge and interpret them with an IIBA TM mindset.
DevelopMentor Courses
- Friday, July 30, 2010
|
39 Articles match "Memory"
|
The Latest from DevelopMentor
|
MORE
|
|
Computer Language Benchmarks
The cost of all OS and external calls (files, memory, databases, networking, etc) should be removed from the total because that’s not controlled by the application. The Computer Language Benchmarks Game explains the limits of comparing the performance of different programming languages (PL) using simplistic benchmarks. The issue is how to map the performance of real programs to a new language using data from simple benchmarks. How would my Java program perform if written in Haskell? The first step is to break down the performance of a real program using detailed profiling data.
Handwaving
- Wednesday, May 26, 2010
Windows Phone & Gaming
The hardware specs for Windows Phone 7 require manufacturers to provide at least 8GB of memory. My wish is that these phones will have at least 64GB of memory. At BAND last night I had some interesting discussions about Windows Phone and as Daniel showed me the racing game on the Zune it suddenly hit me. Windows Phone is not going to be a iPhone killer, at least not based on a single feature that will blast the iPhone away. It is going to blast a hole in the Nintendo DS and Playstation Portable market. expect the Phone 7 offering to be well beyond what a Blackberry offers.
The Blomsma Code
- Wednesday, May 26, 2010
The NoSQL Movement, LINQ, and MongoDB - Oh My!
We begin by generating the objects (Blog, RssEntry, etc) in memory and then serializing them via NoRM to MongoDB much as you would in LINQ to SQL. Maybe you’ve heard people talking about ditching their SQL Servers and other RDBMS entirely. There is a movement out in the software development world called the "No SQL" movement and it’s taking the web application world by storm. Insanity!” you may cry, “for where will people put their data if not in a database? Flat files? Tell me we aren’t we going back to flat files.”. No, but in the relational model, something does has to give. Ok, ok.
Michael C. Kennedy's Weblog
- Thursday, April 22, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Museums of the future, future memories, retrospectives and change
In his book The Living Company Arie de Geus suggests the role of planning, particularly scenario planning, is to create memories of the future. Future museums strike me as a great way to create future memories. Of course I don’t now if the Chinese planners are explicitly trying to create future memories or if they have read Arie de Geus but that’s not really the point. If their questions can’t be answered they start to hypothesis and make things up - they create their own future memories. Creating future memories is one way to overcome these problems.
Allan Kelly's Blog
- Tuesday, August 8, 2006
-
Marshalling native function pointers
throw gcnew OutOfMemoryException("Could not allocate memory on C++ free store"); }. throw gcnew OutOfMemoryException("Could not allocate memory on C++ free store"); }. An important difference of these heaps is that the code heap consists of memory pages that have the attribute PAGE_EXECUTE_READWRITE. p2); MEMORY_BASIC_INFORMATION mbi; VirtualQuery(p1.ToPointer(), &mbi, sizeof(mbi)); // thunks are allocated on a heap that consits of pages // with the PAGE_EXECUTE_READWRITE flag. To discuss this topic, consider the following simple API: namespace NativeAPI. {.
Marcus' Blog
- Friday, April 6, 2007
-
The NoSQL Movement, LINQ, and MongoDB - Oh My!
We begin by generating the objects (Blog, RssEntry, etc) in memory and then serializing them via NoRM to MongoDB much as you would in LINQ to SQL. Maybe you’ve heard people talking about ditching their SQL Servers and other RDBMS entirely. There is a movement out in the software development world called the "No SQL" movement and it’s taking the web application world by storm. Insanity!” you may cry, “for where will people put their data if not in a database? Flat files? Tell me we aren’t we going back to flat files.”. No, but in the relational model, something does has to give. Ok, ok.
Michael C. Kennedy's Weblog
- Thursday, April 22, 2010
-
The Mystery of Concurrent GC
The idea behind the concurrent collector is to do as much of the GC while the UI thread continues to process UI stuff and then only interrupt the application threads when memory is being shuffled around and fixups are occurring. This provides for more responsive UI applications at the expense of slower collections and a higher memory utilization. Disassembling that method showed me that it checks a flag in memory -- 0:000 > u mscorwks!WKS::GCHeap::IsConcurrentGCInProgress This is well known, and now well documented in various places. That's wrong!". dwo(mscorwks!WKS::GCHeap::GcCondemnedGeneration)==2).
-
Processing Text Files with LINQ
The problem with this method is that it reads every line in the file into memory and then returns the array. It actually forces all directors and all movies to be loaded into memory before allowing us to process a single group in our foreach loop. It not only runs a quicker (about 33%), but also consumes much less memory. I was recently writing some code to stream through a large text file, processing the lines it found that matched a regular expression. If you look inside that file, you’ll see quite a bit of header and footer text that our code should ignore.
Jason Diamond
- Sunday, September 7, 2008
-
WPF Data Providers
This will look for the file "largeXmlFile.xml", create an XmlDocument and load the file into memory. One of the nifty new features of the WPF platform is the pluggable data providers. It ships with two out of the box: ObjectDataProvider: allows you to execute binding expressions against an object and it's methods. XmlDataProvider: loads an XML data source and makes it available as a binding source. Both of these derive from the abstract class System.Data.DataSourceProvider which implements the binding glue ( INotifyPropertyChanged ) needed for data binding. State, Age, Income.
Mark's Blog of Random Thoughts
- Wednesday, January 17, 2007
-
SOS: finding the method bound to an EventHandler with WinDbg.
I was preparing a sample memory leak application for an Advanced C# class at Microsoft this past week and debugging through it with SOS.DLL ("Son of Strike"). My prepared application was an ASP.NET application that would leak memory by holding references to the page objects after they had completed their work. did this by having the page hook up an event handler to a global event and then never remove the handler. But as I said, this was a sample. So, I was debugging through it prior to the class just to make sure it exhibited the behavior I was looking for. load sos 0:000> !DumpHeap
|
|
|