|
|
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.
|
26 Articles match "Course","Memory"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential LINQ with the Entity Framework
In this course, you learn to: Leverage new features of C# 3.0, 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. 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. How is LINQ to Entities different from LINQ to SQL? Appendices ASP.NET 3.5
DevelopMentor Courses
- Friday, June 12, 2009
Foundations of C# Programming and the.NET Framework
In this course, you spend half your time on the C# language and half on the.NET platform. DevelopMentor's Essential courses provide five days of instructor-led training for the experienced developer. 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 interface vs. field)?
DevelopMentor Courses
- Friday, June 12, 2009
Fast Track to IIBA™ Certification Training
The DevelopMentor IIBA TM certified coaches, along with the unique structure of the Fast Track to IIBA TM Certification course, provide you with insights and a learning experience that cannot be replicated by self study. The Fast Track to IIBA TM Certification course is designed using proven memory enhancing techniques. To measure your exam readiness, this course provides a robust, bank of knowledge checks and practice questions. It contains exercises that will enhance your retention and recall of key BABOK TM concepts and information.
DevelopMentor Courses
- Friday, July 30, 2010
|
15 Articles match "Course","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. Of course, this calculation is extremely crude, but the goal is to get a sense of the difference in scale. 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. The remaining time is the real cost of the PL.
Handwaving
- Wednesday, May 26, 2010
The NoSQL Movement, LINQ, and MongoDB - Oh My!
The converse is, of course, also true. We’ll be using.NET and C# of course. 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? Don’t take my word on it.
Michael C. Kennedy's Weblog
- Thursday, April 22, 2010
Article: Building a Twitter Application in.NET
For example: "Software Transactional Memory is released! Of course you must have the REST Starter Kit installed for this to work.[2]. I recently wrote an article for DevelopMentor 's Developments newsletter entitled Building a Twitter Application in.NET. You can read it at the DevelopMentor website: [link]. I've republished here for my readers. Enjoy! Building a Twitter Application in.NET. by Michael Kennedy ( @mkennedy ). link]. Twitter has become one of the web's hottest properties. In fact, it grew at a rate of 1400% this past year [ bit.ly/jG9BG jG9BG ]. Let's Start Small.
Michael C. Kennedy's Weblog
- Friday, August 7, 2009
|
-
|
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
-
The NoSQL Movement, LINQ, and MongoDB - Oh My!
The converse is, of course, also true. We’ll be using.NET and C# of course. 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? Don’t take my word on it.
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).
-
WPF Data Providers
This will look for the file "largeXmlFile.xml", create an XmlDocument and load the file into memory. This, of course, is because the data is really an XmlNode object which the ListBox has no idea how to display. 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. State, Age, Income. xmlns = " [link] ". xmlns:x = " [link] " > >.
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. This, of course, is bad form because the System.Web.UI.Page object is intended to be a transient object - it goes away at the end of the request - in production code, I would really bind the event to a handler in global.asax instead. But as I said, this was a sample.
-
Article: Building a Twitter Application in.NET
For example: "Software Transactional Memory is released! Of course you must have the REST Starter Kit installed for this to work.[2]. I recently wrote an article for DevelopMentor 's Developments newsletter entitled Building a Twitter Application in.NET. You can read it at the DevelopMentor website: [link]. I've republished here for my readers. Enjoy! Building a Twitter Application in.NET. by Michael Kennedy ( @mkennedy ). link]. Twitter has become one of the web's hottest properties. In fact, it grew at a rate of 1400% this past year [ bit.ly/jG9BG jG9BG ]. Let's Start Small.
-
Anyone Got a Wish Spell?
played a few different characters over the course of several campaigns. Thanks for the memories Sad to see that Gary Gygax has died. Man, I gave many Sunday afternoons to D&D during my formative years. Casey, Chris, Zoob, Pete, Kessel, and me had some fun times. Then Pete got a girlfriend, and that was the beginning of the end. but my favorite has always been my first, Bandaar the dwarf fighter. Life was pretty simple for Bandaar. ale good, battle axe good, orcs bad. but we had good times, me and him. Here's to you, Gary.
|
|
|