| |
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.
|
49 Articles match "Course"
See all articles with
"Course"
| The Latest from The Problem Solver | MORE | | Introducing the LearningLine The first course material I have done for the LearningLine is a 4 day course on RavenDB. Using this course you can learn how to use RavenDB , complete with exercises and support if you want it, over 4 or 5 evenings. Recently we have been working on something new at DevelopMentor for online teaching. still really like teaching in the classroom and I think that this is a great environment to learn new material. But it is also a very expensive and not very scalable way of learning. So we are starting a new way of learning on the internet. In a hurry? Want to learn more? Enjoy! The Problem Solver - Monday, February 18, 2013 | | The Best from The Problem Solver | MORE | | Using Model – View – ViewModel with Silverlight Of course there is no need to duplicate properties the UI is never going to bind to directly. The View – Model – ViewModel design pattern, also known as MVVM, is getting more popular these days. have found it extremely easy to use when developing very different applications and have used the design pattern recently in both ASP.NET, WPF and Silverlight applications. However easy as it might be is seems to confuse people as I have seen some terrible examples where people make a complete mess of things. The View is data bound to a ViewModel. This is the most important step to remember. The Problem Solver - Tuesday, April 7, 2009 HTML 5 and file Drag & Drop Of course as always not every browser supports the new feature. There is a lot of new goodness in HTML 5 and one of these features is being able to drag a file from the Windows explorer into the browser and handling the drop event using JavaScript. If you are a GMail user you are probably familiar with this as GMail allows users to attach files to emails using this Drag&Drop style. This works just fine with the current versions of Chrome or FireFox though. The HTML page I am using is real simple and looks like this. 1: 2: 3: 4: HTML 5 Drag & Drop demo. 1: $( function () {. Enjoy! The Problem Solver - Thursday, October 13, 2011 Using SignalR for real time data updates Of course we can add some code to actively check for changes to the data but usually there will be no change so that results in a lot of useless network traffic. In a previous post I showed how easy it is to create a simple chat application using SignalR. And chatting on the internet might be popular but as it turns out there are rather a lot of applications that need to do more than just chat. As it is there are a lot more CRUD style applications, where users edit data usually stored in a database for some purpose, than chat applications. And that will remain so until reloads the data. The Problem Solver - Wednesday, July 25, 2012 | - Flowcharts in Workflow 4 and the Switch activity
Of course the FlowSwitch should just to a ToString() on the expression result , anything else would be pointless as any comparison fails. Flowcharts are a nice addition to Windows Workflow Foundation 4. They allow for a lot of pretty complex behavior that is hard to do in a sequential workflow. In WF 3 we used to model these complex behaviors as state machine workflows. That worked but they weren't really state machines or event driven and things could get a bit tricky. No it is just another activity to drop in a workflow. guess you get the picture. So far so good. Next (5). Enjoy! The Problem Solver - Tuesday, October 27, 2009 - More Workflow 4 Services and duplex communications
Of course they don’t receive the data being passed in the callback so that is something to keep in mind when deigning your workflow. Yesterday I posted a long blog post explaining how to do duplex communications in a Workflow service. Also the callback address had to be passed by the client using CallbackContextMessageProperty and the workflow service had to use a callback correlation handle to connect the Receive activity with the Send activity used for the callback. So what is the problem with this? As WCF callbacks are not supported using a ServiceHost on the client is unavoidable. The Problem Solver - Tuesday, May 4, 2010 - Paging with the Silverlight RIA services DomainDataSource
Of course it is just a matter of setting properties so doing so from code is easy enough. Using the declarative DomainDataSource that is part of the upcoming Silverlight 3 RIA services makes it quite easy to work with data. All you need to do is add a DomainDataSource control to the the XAML, point it to the generated DomainContext class (in this case NorthwindContext) and tell it which method to use to load the data from the web service(in this case LoadCustomers). Next add a DataGrid to display the data and you are good to go. Adding paging. Using progressive loading. Enjoy! The Problem Solver - Monday, April 27, 2009 - HTML 5 feature detection aka Modernizr
Of course if JavaScript is disabled Modernizr can’t add a css class to you must add the no-js class yourself. Yesterday I blogged about using the new Server-Sent Events or the EventSource object to send messages from the server to the client. But what happens if I try to do this in a browser that doesn’t support Server-Sent Events? These days that is no linger a recommended approach as browsers are updated frequently and keeping up to date base on browser versions would be a nightmare. better approach, and much more common these days. is feature detection. 2: // Good to go. 4: else {. The Problem Solver - Tuesday, November 8, 2011 - NuGet and projects under source control
Of course that isn’t perfect, some assemblies are installed into the GAC and can’t be treated this way. NuGet is one of those awesome additions to Visual Studio that I wonder how I could have gone for that long without it. And as I am not the only one who likes it we had a bit of a discussion on Twitter last week about how to go about using NuGet with projects under source control that are shared by multiple users. The problem is nothing new and has been around forever. So far so good but what happens if you commit your changes to source control and another person does an update. The Problem Solver - Tuesday, April 12, 2011 - How to get started with Knockout.js
return viewModel.firstName() + " " + viewModel.lastName(); }); Of course we still need to tell Knockout to use the ViewModel and that takes all of one line: ko.applyBindings(viewModel); So the complete JavaScript in my page is now: $( function () {. Once you get into doing more client side JavaScript code with business applications and REST services you are going to run into the question of how to construct the client side HTML required to show the data to the users. Your code might look something like this $( function () {. $( "#btn" ).click( click( function () {. $.getJSON( The Problem Solver - Monday, February 6, 2012 - On building Restful services
Of course the WCF Web API is still in a preview state so some of the technical things are subject to change over time but the general principal of building Restful services isn’t going to change a lot. I recently did a few blog posts showing the basics of how to get started with the WCF Web API but before I continue I think it is best to start with the why instead of how. lot of people will be familiar with writing SOAP style services but not everyone is quite as familiar with the REST approach so I guess that takes a bit of explanation. Enjoy! www.TheProblemSolver.nl The Problem Solver - Tuesday, June 21, 2011 %>
348 Articles match "Course"
See all articles with
"Course"
| The Latest from DevelopMentor | MORE | | Dialogue Sheets - update & new planning sheet When I do training course I always give teams one or two retrospective dialogue sheets for them to use for their first retrospectives. 'Last month InfoQ carried an update on the use of retrospective dialogue sheets. The use of these sheets continues to grow and I continue to receive good feedback. If you’ve tried the sheets and haven’t sent me some feedback than please e-mail me and let me know about your experiences. And for those of you who’ve not tried a dialogue sheet retrospective, whats stopping you? The Dialogue Sheet PDFs are free to download. Allan Kelly's Blog - Tuesday, May 7, 2013 Reblogged: What should I learn to get started in.NET and web development? Here’s my advice along with a bunch of courses you can use to accomplish this efficiently and affordably. Here are the related LearningLine courses from DevelopMentor which will walk you through this path. Because you can preview the first lesson of each course, you have about 7 hours free and the rest are all included in an affordable $29 subscription. If a lesson (task) happens to be shared across courses, you’ll see it already marked as completed for you and you can just skip to the next. Hope you all find it useful here as well]. How do I do that?” Michael C. Kennedy's Weblog - Monday, May 6, 2013 Why Choose NoSQL and Document Databases over RDBMS This is an excerpt from my upcoming online MongoDB course for DevelopMentor. Filed under: NoSQL Tagged: DevelopMentor , LearningLine , NoSQL , Online courses , Online learning , Screencasts. NoSQL DevelopMentor LearningLine Online courses Online learning Screencasts 'Do you want to know the biggest single reason you should choose document databases over SQL Server, Oracle, or MySQL? Hint: It’s not performance or scalability. You can take the first 1 1/2 hours for free here: Early access: MongoDB and NoSQL for.NET developers. Cheers, @mkennedy. Michael C. Kennedy's Weblog - Friday, May 3, 2013 | -
| The Best from DevelopMentor | MORE | - Why Choose NoSQL and Document Databases over RDBMS
This is an excerpt from my upcoming online MongoDB course for DevelopMentor. Filed under: NoSQL Tagged: DevelopMentor , LearningLine , NoSQL , Online courses , Online learning , Screencasts. NoSQL DevelopMentor LearningLine Online courses Online learning Screencasts 'Do you want to know the biggest single reason you should choose document databases over SQL Server, Oracle, or MySQL? Hint: It’s not performance or scalability. You can take the first 1 1/2 hours for free here: Early access: MongoDB and NoSQL for.NET developers. Cheers, @mkennedy. - Take the first hour of any online developer course for free at LearningLine
We are announcing the ability to preview any of our online courses, for free without entering any payment information. You can now study approximately the first hour of any one of our courses. To get started, just head over to our schedule page , click on any course title you’d like and choose “ Preview course for free “: . At the time of this writing, there are 27 courses which run between 4 and 15 days in length. So head on over to the schedule page and find a course that is right for you: https://learninglineapp.com/schedule. - ELINQ with EF 4.0 Course Update
I’ve been working feverishly the last couple of months to update my DevelopMentor course: Essential LINQ with Entity Framework 4.0. Here is a breakdown of the course content: Day 1: 1. Here’s when and where we’re offering the course: Boston: February 9-12, 2010 London: February 23-26, 2010 Los Angeles: March 30-April 2, 2010 Boston: April 20-23, 2010 London: May 4-7, 2010 Los Angeles: June 8-11, 2010 Boston: June 29-July 2, 2010. Functional Programming in C# 2. LINQ to Objects 3. LINQ to XML. Day 2: 4. LINQ to SQL 5. EF: Architecture 6. EF: LINQ to Entities. Day 3: 7. Tony and Zuzana's World - Tuesday, December 29, 2009 - Richard Blewett: Devweek 2013–WCF Crash Course
Thanks to everyone who attended my Devweek 2013 pre-conference session on WCF. You can get the slides and demos here DevelopMentor Courses - Tuesday, March 5, 2013 - Flowcharts in Workflow 4 and the Switch activity
Of course the FlowSwitch should just to a ToString() on the expression result , anything else would be pointless as any comparison fails. Flowcharts are a nice addition to Windows Workflow Foundation 4. They allow for a lot of pretty complex behavior that is hard to do in a sequential workflow. In WF 3 we used to model these complex behaviors as state machine workflows. That worked but they weren't really state machines or event driven and things could get a bit tricky. No it is just another activity to drop in a workflow. guess you get the picture. So far so good. Next (5). Enjoy! The Problem Solver - Tuesday, October 27, 2009 %>
| | |