You can dramatically simplify your code by using classes to define read-only/immutable objects … but to create classes that behave correctly requires a little bit of redirection.
The short definition of a parameter sweep is that it's the process of trying different training parameter values in order to find a good set of neural network weight values.
- By James McCaffrey
- 11/10/2015
You can dramatically simplify your code by using value objects, but to create a value object that makes sense to the developer who uses it, you need to redefine what the equals sign means. Along the way, Peter points out some problems when you don't use classes to define your data.
Many stories aim to share a saga of how code builds are successfully integrated with each other. This is not one of those stories.
Now that you know how to create tag helpers, let's create a custom one that loads a bootstrap-select dropdown via a remote URI.
The TypeScript datatyping support not only applies to simple variables, it also supports you when doing clever things with functions. Specifically, TypeScript ensures you create reliable code when implementing callback functions.
Create precise logic dictating which messages an actor will handle and how they will react to them.
- By Jason Roberts
- 10/26/2015
Simplify conditional actor code and improve readability.
- By Jason Roberts
- 10/22/2015
An introduction to the Chakra JavaScript engine and how it can be used within a Windows 10 app to execute JavaScript.
- By Nick Randolph
- 10/21/2015
Stop trying to make everything work all at once. Instead, use Domain Events to make applications simpler, more scalable and easier to maintain -- and to defer updates until you can't avoid making them.
Implementing Domain Events can dramatically simplify your application while also making it more scalable. Here are some of the implementation options available to you in the .NET environment.
Recurrent neural networks can solve some types of problems that regular feed-forward networks cannot handle.
- By James McCaffrey
- 10/12/2015
The open source library RestSharp is designed to make consuming APIs from .NET easy and work across platforms.
- By Ondrej Balas
- 10/08/2015
Peter addresses reader's concerns by showing how to implement a read-only/immutable value object.
What Martin wanted was to fulfill his internship requirement for his degree and possibly earn a little spending money for his efforts. He got both of these and the experience of meeting "The Monster."
Functions in TypeScript aren't handled the way you'd expect, based on any other language (including JavaScript). Fortunately, because of the way TypeScript handles functions, you're protected from a common JavaScript error (in addition to getting better IntelliSense support and compile-time checking, of course).
Nick Randolph pulls apart the lifecycle of a Windows 10 application and reveals what goes on programmatically when users launch, switch between and close Windows 10 apps.
- By Nick Randolph
- 09/23/2015
Readers suggest ways to build a powerful HtmlHelper that simplifies creating typical application Views. Along the way, Peter uses a workaround for extending an anonymous object with additional properties and shows how to extract values from a lambda expression in a View.
Sometimes you need to make platform-specific calls. That's where DependencyService comes in handy.
- By Wallace McClure
- 09/16/2015
If you're not careful, you'll replace your huge, lumbering unmaintainable enterprise applications with a web of applications that can't be changed without blowing each other up. But if you apply the same tools you use inside your applications to your application architecture, you can avoid that.