Basic counter w/ @ngrx/store.
This file contains hidden or 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
| // Place your key bindings in this file to overwrite the defaults | |
| [ | |
| { | |
| "key": "ctrl+k ctrl+d", | |
| "command": "editor.action.format", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "ctrl+l", | |
| "command": "editor.action.deleteLines", |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <title></title> | |
| <link href="//cdn.jsdelivr.net/angular.chartjs/latest/angular-chart.css" rel="stylesheet" /> | |
| </head> | |
| <body> | |
| <div ng-app="app"> | |
| <div ng-controller="ChartController as vm"> | |
| <canvas id="line" class="chart chart-line" chart-data="vm.data" chart-labels="vm.labels" |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <title></title> | |
| <style> | |
| .debug .ng-scope { | |
| border: .8px dotted red; | |
| padding: 5px; | |
| margin: 3px; | |
| background-color: rgba(63, 202, 192, 0.4); |
This file contains hidden or 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
| swagger: '2.0' | |
| info: | |
| description: The Books API | |
| version: 1.0.0 | |
| title: Books API | |
| contact: {} | |
| license: | |
| name: MIT | |
| host: 'localhost:3000' | |
| basePath: '/api' |
This file contains hidden or 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 System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using Microsoft.Practices.Unity; | |
| namespace DiWithUnity | |
| { | |
| class Program |
This file contains hidden or 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
| var CalendarException = function CalendarException(message) { | |
| this.message = message; | |
| this.toString = function () { | |
| return this.constructor.name + ": " + this.message | |
| }; | |
| } | |
| var Calendar = function Calendar(firstWeekDay) { | |
| //properties | |
| this.firstWeekDay = firstWeekDay || 0; // 0 = Sunday |
This file contains hidden or 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
| Copy the link below into Internet Explorer | |
| Do NOT JOIN AUDIO | |
| Join the meeting. Get Ready to Party. | |
| Join online meeting | |
| https://lync-meet-east/jeff_gonzalez/CMT7P6C0 | |
This file contains hidden or 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
| { | |
| "id": 12, | |
| "firstName": "Bob", | |
| "lastName": "Smith", | |
| "email": "bob@aol.com", | |
| "students": [ | |
| { | |
| "id": 32, | |
| "name": "Joe Jones", | |
| "level": 2 |
This file contains hidden or 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 System.Collections.Generic; | |
| using System.Web.Http.Dependencies; | |
| using Microsoft.Practices.Unity; | |
| namespace BooksApi | |
| { | |
| public class UnityResolver : IDependencyResolver | |
| { | |
| protected IUnityContainer Container; |