| |
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.
|
75 Articles match "Course","Functionality"
| Related DevelopMentor Courses | MORE | | 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 the following code the clients starts the communications hub and passed the loadBooks callback to load the books as soon as the communications are initialized. $( function () {. click(loadBooks); function loadBooks() {. then( function (books) {. each(books, function () {. appendTo(ul); renderBook(newLi, this ); }); }); }; function renderBook(li, book) {. submit( function (e) {. Enjoy! The Problem Solver - Wednesday, July 25, 2012 Agile: Where's the evidence? Much traditional work has defined better as: On schedule/time, on budget/cost with the desired features/functionality. But Agile doesn’t accept that as better, Agile negotiates over features/functionality and aims for business value. Heaven only knows what it does to function point analysis.) If you want something a little more grounded there was a recent Forrester report (sorry, I can’t afford the full report) which said: “Agile enables early detection of issues and mid-course corrections because it delivers artefacts much sooner and more often. Scrum? Finance? Allan Kelly's Blog - Friday, March 30, 2012 An Effective Introduction to the STL Training Mastery of the subtle differences in semantics of member and non-member functions with the same name, e.g., find, remove, etc. In a combination of lectures and labs, this course brings out the underlying design of the STL, demonstrates how to take advantage of the library's strengths, and shows how to avoid its weaknesses. Participants will gain: An understanding of the architecture behind the STL, including its core components and concepts. Knowledge of how to integrate STL containers with code expecting arrays and other C-like data structures. Exercises Further Reading DevelopMentor Courses - Tuesday, March 1, 2011 |
76 Articles match "Course","Functionality"
| The Latest from DevelopMentor | MORE | | Unit testing code depending on the ASP.NET #WebApi HttpClient The easiest way is by creating a dummy DelegatingHandler and overriding the SendAsync() function to just return a fake response instead of actually doing an HTTP request. The most important function is the SendAsync() which returns a new Task. Testing the GetBooks() function. The GetBooks() function gets all books from the REST service. Testing the GetBook(int id) function. Of course we still need tests for updating existing resources as well as deleting them but with these examples those should be easy enough :-). 12: 13: public IEnumerable GetBooks(). The Problem Solver - Monday, May 20, 2013 Agile Clinic: Dear Allan, we have a little problem with Agile. The sender has graciously agreed to let me share the mail and my advice with you, all anonymously of course… The sender is new to the team, new to the company, they are developing a custom web app for a client, i.e. they are an ESP or consultancy. 'Consider this blog an Agile Clinic. On Friday an e-mail dropped into my mailbox asking if I could help. the Developers work in sprints, estimating tasks in JIRA as they go. Sprints last three weeks, including planning, development and testing. have been tasked to produce burndowns to keep track of how the Dev cells are doing.” Perhaps both. Allan Kelly's Blog - Sunday, April 28, 2013 The Architecture of WCF 'Before WCF it was, of course, possible for software running on different machines to communicate. Protocol channels are designed to layer in functionality not supported by the transport, for example, transaction flow of HTTP. With the service model layer there are only two things we have to build (we can build more if we choose to), the code that consumes the service functionality and the implementation of that functionality. Behaviors are local functionality that is not visible to the other side of the communication (e.g. Messages. Channels. WCF, as of 4.5, DevelopMentor Courses - Sunday, April 7, 2013 | -
| The Best from DevelopMentor | MORE | - 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. Functional Programming in C# 2. 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. LINQ to Objects 3. LINQ to XML. Day 2: 4. LINQ to SQL 5. EF: Architecture 6. EF: LINQ to Entities. Tony and Zuzana's World - Tuesday, December 29, 2009 - HTML 5 and file Drag & Drop
Of course as always not every browser supports the new feature. Also I am using jQuery but the jQueryUI droppable function doesn’t support dragging and dropping files from the explorer at this time. To work with file drops we need to handle 2 events, the dragover and the drop , by adding event handlers using the native addEventListener() function. 1: $( function () {. 3: var dropTarget = $( '#dropTarget' )[0]; 4: 5: dropTarget.addEventListener( 'dragover' , function (e) {. each(e.dataTransfer.files, function () {. 17: 18: $.each(e.dataTransfer.files, 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 the following code the clients starts the communications hub and passed the loadBooks callback to load the books as soon as the communications are initialized. $( function () {. click(loadBooks); function loadBooks() {. then( function (books) {. each(books, function () {. appendTo(ul); renderBook(newLi, this ); }); }); }; function renderBook(li, book) {. submit( function (e) {. Enjoy! The Problem Solver - Wednesday, July 25, 2012 - ASP.NET WebAPI Security 5: JavaScript Clients
The typical course of events is that the user first logs on to the web application – which will result in an authentication cookie of some sort. Obtaining a token from IdentityServer’s resource owner credential OAuth2 endpoint could look like this: thinktectureIdentityModel.BrokeredAuthentication = function (stsEndpointAddress, scope) {. this.stsEndpointAddress = stsEndpointAddress; this.scope = scope; }; thinktectureIdentityModel.BrokeredAuthentication.prototype = function () {. getIdpToken = function (un, pw, callback) {. $.ajax({. JavaScript client scenarios. www.leastprivilege.com - Thursday, March 15, 2012 - More Workflow 4 Services and duplex communications
The code in the Main() function now looks like this: static void Main( string [] args). {. 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. As it turns out it is! The Problem Solver - Tuesday, May 4, 2010 - HTML 5 feature detection aka Modernizr
2: var source = new EventSource( 'home/events' ); 3: 4: source.onmessage = function (e) {. appendTo( '#messages' ); 6: }; 7: 8: source.addEventListener( 'ping' , function (e) {. 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? is feature detection. 2: // Good to go. The Problem Solver - Tuesday, November 8, 2011 - Unit testing code depending on the ASP.NET #WebApi HttpClient
The easiest way is by creating a dummy DelegatingHandler and overriding the SendAsync() function to just return a fake response instead of actually doing an HTTP request. The most important function is the SendAsync() which returns a new Task. Testing the GetBooks() function. The GetBooks() function gets all books from the REST service. Testing the GetBook(int id) function. Of course we still need tests for updating existing resources as well as deleting them but with these examples those should be easy enough :-). 12: 13: public IEnumerable GetBooks(). The Problem Solver - Monday, May 20, 2013 %>
| | |