This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" /> | |
<!-- | |
ArcGIS API for JavaScript, https://js.arcgis.com | |
For more information about the visualization-heatmap sample, | |
read the original sample description at developers.arcgis.com. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Before you start: | |
- Try not to read ahead. | |
- Do one task at a time, work incrementally. | |
- Only test for correct inputs, no need to test for invalid inputs. | |
String Calculator: | |
1. Create a simple StringCalculator class with one method int Add(string numbers) | |
1. An empty string will return 0 | |
2. A single number will return the number |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Update-ExecutionPolicy Unrestricted | |
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
Enable-RemoteDesktop | |
choco install sublimetext3 | |
choco install sublimetext3.packagecontrol |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using MassTransit; | |
namespace ConsoleApplication8 | |
{ | |
interface IA { string Name { get; set; } } | |
interface IB : IA { string LastName { get; set; } } | |
interface IC : IB { int Age { get; set; } } | |
class HelloMessage : IC |