├── .gitignore ├── Blog01 ├── ApplicationComponent.html ├── ChessboardComponent.html ├── FieldComponent.html ├── LICENSE ├── README.MD ├── applicationcomponent.js ├── applicationcomponent.js.map ├── applicationcomponent.ts ├── bootstrap.min.css ├── chess.css ├── chessboard.js ├── chessboard.js.map ├── chessboard.ts ├── chessboardcomponent.js ├── chessboardcomponent.js.map ├── chessboardcomponent.ts ├── chessboardui.html ├── chessboardui.js ├── chessboardui.js.map ├── chessboardui.ts ├── evaluator.js ├── evaluator.js.map ├── evaluator.ts ├── fieldcomponent.js ├── fieldcomponent.js.map ├── fieldcomponent.ts ├── index.html ├── move.js ├── move.js.map ├── move.ts ├── moves.js ├── moves.js.map ├── moves.ts ├── package.json ├── pieces.js ├── pieces.js.map ├── pieces.ts ├── suggestor.js ├── suggestor.js.map ├── suggestor.ts ├── tsconfig.json └── wikimediaimages │ ├── b_bishop.png │ ├── b_empty.png │ ├── b_king.png │ ├── b_knight.png │ ├── b_pawn.png │ ├── b_queen.png │ ├── b_rook.png │ ├── empty.png │ ├── legal notes.txt │ ├── w_bishop.png │ ├── w_empty.png │ ├── w_king.png │ ├── w_knight.png │ ├── w_pawn.png │ ├── w_queen.png │ └── w_rook.png ├── Blog02 ├── ApplicationComponent.html ├── ChessboardComponent_.html ├── FieldComponent.html ├── LICENSE ├── README.MD ├── applicationcomponent.js ├── applicationcomponent.js.map ├── applicationcomponent.ts ├── bootstrap.min.css ├── chess.css ├── chessboard.js ├── chessboard.js.map ├── chessboard.ts ├── chessboardcomponent.js ├── chessboardcomponent.js.map ├── chessboardcomponent.ts ├── chessboardui.html ├── chessboardui.js ├── chessboardui.js.map ├── chessboardui.ts ├── evaluator.js ├── evaluator.js.map ├── evaluator.ts ├── fieldcomponent.js ├── fieldcomponent.js.map ├── fieldcomponent.ts ├── index.html ├── move.js ├── move.js.map ├── move.ts ├── moves.js ├── moves.js.map ├── moves.ts ├── package.json ├── pieces.js ├── pieces.js.map ├── pieces.ts ├── suggestor.js ├── suggestor.js.map ├── suggestor.ts ├── tsconfig.json └── wikimediaimages │ ├── b_bishop.png │ ├── b_empty.png │ ├── b_king.png │ ├── b_knight.png │ ├── b_pawn.png │ ├── b_queen.png │ ├── b_rook.png │ ├── empty.png │ ├── legal notes.txt │ ├── w_bishop.png │ ├── w_empty.png │ ├── w_king.png │ ├── w_knight.png │ ├── w_pawn.png │ ├── w_queen.png │ └── w_rook.png ├── BootstrapSideMenu ├── .angular-cli.json ├── .editorconfig ├── .gitignore ├── BootstrapSideMenu.iml ├── README.md ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── menus │ │ │ ├── menus.component.css │ │ │ ├── menus.component.html │ │ │ ├── menus.component.spec.ts │ │ │ └── menus.component.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts ├── tsconfig.json └── tslint.json ├── Chess ng2 alpha 46 ├── ApplicationComponent.html ├── CapturedPiecesComponent.html ├── ChessboardComponent.html ├── DI-Example │ ├── index.html │ ├── pane.html │ ├── tab.html │ ├── tab0.js │ ├── tab0.js.map │ ├── tab0.ts │ └── tabapplication.html ├── FieldComponent.html ├── HistoryComponent.html ├── LICENSE ├── README.MD ├── SettingsComponent.html ├── _snippets.txt ├── applicationcomponent.js ├── applicationcomponent.js.map ├── applicationcomponent.ts ├── bootstrap.min.css ├── capturedpiecescomponent.js ├── capturedpiecescomponent.js.map ├── capturedpiecescomponent.ts ├── cheat.sheet ├── chess.css ├── chessboardcomponent.js ├── chessboardcomponent.js.map ├── chessboardcomponent.ts ├── engine │ ├── chessboard.js │ ├── chessboard.js.map │ ├── chessboard.ts │ ├── chessboardUI.js │ ├── chessboardUI.js.map │ ├── chessboardUI.ts │ ├── evaluation.js │ ├── evaluation.js.map │ ├── evaluator.js │ ├── evaluator.js.map │ ├── evaluator.ts │ ├── move.js │ ├── move.js.map │ ├── move.ts │ ├── moves.js │ ├── moves.js.map │ ├── moves.ts │ ├── pieces.js │ ├── pieces.js.map │ ├── pieces.ts │ ├── suggestor.js │ ├── suggestor.js.map │ └── suggestor.ts ├── fieldcomponent.js ├── fieldcomponent.js.map ├── fieldcomponent.ts ├── history.js ├── history.js.map ├── historycomponent.js ├── historycomponent.js.map ├── historycomponent.ts ├── index.html ├── npm-debug.log ├── package.json ├── piechart.html ├── settingsComponent.js ├── settingsComponent.js.map ├── settingscomponent.ts ├── settingscomponentl.js ├── settingscomponentl.js.map ├── tsconfig.json ├── wikimediaimages │ ├── b_bishop.png │ ├── b_empty.png │ ├── b_king.png │ ├── b_knight.png │ ├── b_pawn.png │ ├── b_queen.png │ ├── b_rook.png │ ├── empty.png │ ├── legal notes.txt │ ├── w_bishop.png │ ├── w_empty.png │ ├── w_king.png │ ├── w_knight.png │ ├── w_pawn.png │ ├── w_queen.png │ └── w_rook.png └── wrongApproachToEvents.html ├── Chess ├── .gitignore ├── LICENSE ├── README.MD ├── angular-cli.json ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── index.ts │ │ └── shared │ │ │ └── index.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── .npmignore │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── chess.css │ │ └── wikimediaimages │ │ │ ├── b_bishop.png │ │ │ ├── b_empty.png │ │ │ ├── b_king.png │ │ │ ├── b_knight.png │ │ │ ├── b_pawn.png │ │ │ ├── b_queen.png │ │ │ ├── b_rook.png │ │ │ ├── empty.png │ │ │ ├── legal notes.txt │ │ │ ├── w_bishop.png │ │ │ ├── w_empty.png │ │ │ ├── w_king.png │ │ │ ├── w_knight.png │ │ │ ├── w_pawn.png │ │ │ ├── w_queen.png │ │ │ └── w_rook.png │ ├── captured-pieces │ │ ├── CapturedPiecesComponent.html │ │ └── capturedpiecescomponent.ts │ ├── chess-app │ │ ├── chess.component.css │ │ ├── chess.component.full.html │ │ ├── chess.component.full.ts │ │ ├── chess.component.html │ │ └── chess.component.ts │ ├── chessboard │ │ ├── ChessboardComponent.html │ │ └── chessboardcomponent.ts │ ├── engine │ │ ├── chessboard.ts │ │ ├── chessboardUI.ts │ │ ├── evaluator.ts │ │ ├── move.ts │ │ ├── moves.ts │ │ ├── pieces.ts │ │ └── suggestor.ts │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── field │ │ ├── FieldComponent.html │ │ └── fieldcomponent.ts │ ├── history │ │ ├── HistoryComponent.html │ │ └── historycomponent.ts │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── row │ │ ├── RowComponent.html │ │ └── rowcomponent.ts │ ├── settings │ │ ├── SettingsComponent.html │ │ └── settingscomponent.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.json │ └── typings.d.ts └── tslint.json ├── ElectronPlaysChess ├── .gitignore ├── ElectronPlaysChess.iml ├── LICENSE ├── README.md ├── angular-cli.json ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.json ├── electron │ ├── main.js │ └── package.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.module.ts │ │ ├── captured-pieces │ │ │ ├── CapturedPiecesComponent.html │ │ │ └── capturedpiecescomponent.ts │ │ ├── chess-app │ │ │ ├── chess.component.css │ │ │ ├── chess.component.html │ │ │ └── chess.component.ts │ │ ├── chessboard │ │ │ ├── ChessboardComponent.html │ │ │ └── chessboardcomponent.ts │ │ ├── engine │ │ │ ├── chessboard.ts │ │ │ ├── chessboardUI.ts │ │ │ ├── evaluator.ts │ │ │ ├── move.ts │ │ │ ├── moves.ts │ │ │ ├── pieces.ts │ │ │ └── suggestor.ts │ │ ├── field │ │ │ ├── FieldComponent.html │ │ │ └── fieldcomponent.ts │ │ ├── history │ │ │ ├── HistoryComponent.html │ │ │ └── historycomponent.ts │ │ ├── row │ │ │ ├── RowComponent.html │ │ │ └── rowcomponent.ts │ │ ├── settings │ │ │ ├── SettingsComponent.html │ │ │ └── settingscomponent.ts │ │ └── shared │ │ │ └── index.ts │ ├── assets │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── chess.css │ │ └── wikimediaimages │ │ │ ├── b_bishop.png │ │ │ ├── b_empty.png │ │ │ ├── b_king.png │ │ │ ├── b_knight.png │ │ │ ├── b_pawn.png │ │ │ ├── b_queen.png │ │ │ ├── b_rook.png │ │ │ ├── empty.png │ │ │ ├── legal notes.txt │ │ │ ├── w_bishop.png │ │ │ ├── w_empty.png │ │ │ ├── w_king.png │ │ │ ├── w_knight.png │ │ │ ├── w_pawn.png │ │ │ ├── w_queen.png │ │ │ └── w_rook.png │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles │ │ └── styles.scss │ ├── test.ts │ ├── tsconfig.json │ └── typings.d.ts └── tslint.json ├── ElectronPlaysChess2019 ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.module.ts │ │ ├── captured-pieces │ │ │ ├── captured-pieces.component.html │ │ │ └── captured-pieces.component.ts │ │ ├── chess-app │ │ │ ├── chess-app.component.html │ │ │ └── chess-app.component.ts │ │ ├── chessboard │ │ │ ├── chessboard.component.html │ │ │ └── chessboard.component.ts │ │ ├── engine │ │ │ ├── CheckMateException.ts │ │ │ ├── StaleMateException.ts │ │ │ ├── chessboard.ts │ │ │ ├── chessboardUI.ts │ │ │ ├── evaluator.ts │ │ │ ├── move.ts │ │ │ ├── moves.ts │ │ │ ├── pieces.ts │ │ │ └── suggestor.ts │ │ ├── field │ │ │ ├── field.component.html │ │ │ └── field.component.ts │ │ ├── history │ │ │ ├── history.component.html │ │ │ └── history.component.ts │ │ ├── row │ │ │ ├── row.component.html │ │ │ └── row.component.ts │ │ └── settings │ │ │ ├── settings.component.html │ │ │ └── settings.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── chess.css │ │ └── wikimediaimages │ │ │ ├── b_bishop.png │ │ │ ├── b_empty.png │ │ │ ├── b_king.png │ │ │ ├── b_knight.png │ │ │ ├── b_pawn.png │ │ │ ├── b_queen.png │ │ │ ├── b_rook.png │ │ │ ├── empty.png │ │ │ ├── legal notes.txt │ │ │ ├── w_bishop.png │ │ │ ├── w_empty.png │ │ │ ├── w_king.png │ │ │ ├── w_knight.png │ │ │ ├── w_pawn.png │ │ │ ├── w_queen.png │ │ │ └── w_rook.png │ ├── browserslist │ ├── electron.main.js │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json ├── tsconfig.json └── tslint.json ├── ElectronPlaysChess2025 ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── README.md ├── angular.json ├── package-lock.json ├── package.json ├── public │ ├── assets │ │ ├── .gitkeep │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── chess.css │ │ └── wikimediaimages │ │ │ ├── b_bishop.png │ │ │ ├── b_empty.png │ │ │ ├── b_king.png │ │ │ ├── b_knight.png │ │ │ ├── b_pawn.png │ │ │ ├── b_queen.png │ │ │ ├── b_rook.png │ │ │ ├── empty.png │ │ │ ├── legal notes.txt │ │ │ ├── w_bishop.png │ │ │ ├── w_empty.png │ │ │ ├── w_king.png │ │ │ ├── w_knight.png │ │ │ ├── w_pawn.png │ │ │ ├── w_queen.png │ │ │ └── w_rook.png │ └── favicon.ico ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ ├── app.module.ts │ │ ├── app.routes.ts │ │ ├── captured-pieces │ │ │ ├── captured-pieces.component.html │ │ │ └── captured-pieces.component.ts │ │ ├── chessboard │ │ │ ├── chessboard.component.html │ │ │ └── chessboard.component.ts │ │ ├── engine │ │ │ ├── CheckMateException.ts │ │ │ ├── StaleMateException.ts │ │ │ ├── chessboard.ts │ │ │ ├── chessboardUI.ts │ │ │ ├── evaluator.ts │ │ │ ├── move.ts │ │ │ ├── moves.ts │ │ │ ├── pieces.ts │ │ │ └── suggestor.ts │ │ ├── field │ │ │ ├── field.component.html │ │ │ └── field.component.ts │ │ ├── history │ │ │ ├── history.component.html │ │ │ └── history.component.ts │ │ ├── row │ │ │ ├── row.component.html │ │ │ └── row.component.ts │ │ └── settings │ │ │ ├── settings.component.html │ │ │ └── settings.component.ts │ ├── app_dsi │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ └── app.routes.ts │ ├── index.html │ ├── main.ts │ └── styles.scss ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── ElectronPlaysChess2025_ ├── .angular │ └── cache │ │ └── 19.0.7 │ │ └── Electron-plays-chess2019 │ │ ├── .tsbuildinfo │ │ ├── angular-compiler.db │ │ └── angular-compiler.db-lock ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.module.ts │ │ ├── captured-pieces │ │ │ ├── captured-pieces.component.html │ │ │ └── captured-pieces.component.ts │ │ ├── chess-app │ │ │ ├── chess-app.component.html │ │ │ └── chess-app.component.ts │ │ ├── chessboard │ │ │ ├── chessboard.component.html │ │ │ └── chessboard.component.ts │ │ ├── engine │ │ │ ├── CheckMateException.ts │ │ │ ├── StaleMateException.ts │ │ │ ├── chessboard.ts │ │ │ ├── chessboardUI.ts │ │ │ ├── evaluator.ts │ │ │ ├── move.ts │ │ │ ├── moves.ts │ │ │ ├── pieces.ts │ │ │ └── suggestor.ts │ │ ├── field │ │ │ ├── field.component.html │ │ │ └── field.component.ts │ │ ├── history │ │ │ ├── history.component.html │ │ │ └── history.component.ts │ │ ├── row │ │ │ ├── row.component.html │ │ │ └── row.component.ts │ │ └── settings │ │ │ ├── settings.component.html │ │ │ └── settings.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── chess.css │ │ └── wikimediaimages │ │ │ ├── b_bishop.png │ │ │ ├── b_empty.png │ │ │ ├── b_king.png │ │ │ ├── b_knight.png │ │ │ ├── b_pawn.png │ │ │ ├── b_queen.png │ │ │ ├── b_rook.png │ │ │ ├── empty.png │ │ │ ├── legal notes.txt │ │ │ ├── w_bishop.png │ │ │ ├── w_empty.png │ │ │ ├── w_king.png │ │ │ ├── w_knight.png │ │ │ ├── w_pawn.png │ │ │ ├── w_queen.png │ │ │ └── w_rook.png │ ├── browserslist │ ├── electron.main.js │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json ├── tsconfig.json └── tslint.json ├── LICENSE ├── README.md ├── Step 01 Passing Parameters ├── LICENSE ├── game.html ├── game.js ├── game.js.map ├── game.ts ├── index.html ├── playground.html ├── playground.js ├── playground.js.map ├── playground.ts ├── readme.md └── tsconfig.json ├── Step 02 Static Chessboard ├── LICENSE ├── README.MD ├── app.js ├── app.js.map ├── application.html ├── application.js ├── application.js.map ├── application.ts ├── board.js ├── board.js.map ├── bootstrap.min.css ├── chessboard.html ├── chessboard.js ├── chessboard.js.map ├── chessboard.ts ├── field.html ├── field.js ├── field.js.map ├── field.ts ├── index.html ├── tsconfig.json └── wikimediaimages │ ├── b_bishop.png │ ├── b_empty.png │ ├── b_king.png │ ├── b_knight.png │ ├── b_pawn.png │ ├── b_queen.png │ ├── b_rook.png │ ├── empty.png │ ├── legal notes.txt │ ├── w_bishop.png │ ├── w_empty.png │ ├── w_king.png │ ├── w_knight.png │ ├── w_pawn.png │ ├── w_queen.png │ └── w_rook.png ├── Step 03 UI Events ├── ApplicationComponent.html ├── ChessboardComponent.html ├── FieldComponent.html ├── LICENSE ├── README.MD ├── applicationcomponent.js ├── applicationcomponent.js.map ├── applicationcomponent.ts ├── bootstrap.min.css ├── chess.css ├── chessboardcomponent.js ├── chessboardcomponent.js.map ├── chessboardcomponent.ts ├── engine │ ├── chessboard.js │ ├── chessboard.js.map │ └── chessboard.ts ├── fieldcomponent.js ├── fieldcomponent.js.map ├── fieldcomponent.ts ├── index.html ├── tsconfig.json ├── wikimediaimages │ ├── b_bishop.png │ ├── b_empty.png │ ├── b_king.png │ ├── b_knight.png │ ├── b_pawn.png │ ├── b_queen.png │ ├── b_rook.png │ ├── empty.png │ ├── legal notes.txt │ ├── w_bishop.png │ ├── w_empty.png │ ├── w_king.png │ ├── w_knight.png │ ├── w_pawn.png │ ├── w_queen.png │ └── w_rook.png └── wrongApproachToEvents.html ├── Step 04 Dependency Injection ├── ApplicationComponent.html ├── ChessboardComponent.html ├── DI-Example │ ├── index.html │ ├── pane.html │ ├── tab.html │ ├── tab0.js │ ├── tab0.js.map │ ├── tab0.ts │ └── tabapplication.html ├── FieldComponent.html ├── LICENSE ├── README.MD ├── _snippets.txt ├── applicationcomponent.js ├── applicationcomponent.js.map ├── applicationcomponent.ts ├── bootstrap.min.css ├── cheat.sheet ├── chess.css ├── chessboardcomponent.js ├── chessboardcomponent.js.map ├── chessboardcomponent.ts ├── engine │ ├── chessboard.js │ ├── chessboard.js.map │ └── chessboard.ts ├── fieldcomponent.js ├── fieldcomponent.js.map ├── fieldcomponent.ts ├── index.html ├── tsconfig.json ├── wikimediaimages │ ├── b_bishop.png │ ├── b_empty.png │ ├── b_king.png │ ├── b_knight.png │ ├── b_pawn.png │ ├── b_queen.png │ ├── b_rook.png │ ├── empty.png │ ├── legal notes.txt │ ├── w_bishop.png │ ├── w_empty.png │ ├── w_king.png │ ├── w_knight.png │ ├── w_pawn.png │ ├── w_queen.png │ └── w_rook.png └── wrongApproachToEvents.html ├── Step 05 First Working Version ├── ApplicationComponent.html ├── CapturedPiecesComponent.html ├── ChessboardComponent.html ├── DI-Example │ ├── index.html │ ├── pane.html │ ├── tab.html │ ├── tab0.js │ ├── tab0.js.map │ ├── tab0.ts │ └── tabapplication.html ├── FieldComponent.html ├── HistoryComponent.html ├── LICENSE ├── README.MD ├── _snippets.txt ├── applicationcomponent.js ├── applicationcomponent.js.map ├── applicationcomponent.ts ├── bootstrap.min.css ├── capturedpiecescomponent.js ├── capturedpiecescomponent.js.map ├── capturedpiecescomponent.ts ├── cheat.sheet ├── chess.css ├── chessboardcomponent.js ├── chessboardcomponent.js.map ├── chessboardcomponent.ts ├── engine │ ├── chessboard.js │ ├── chessboard.js.map │ ├── chessboard.ts │ ├── chessboardUI.js │ ├── chessboardUI.js.map │ ├── chessboardUI.ts │ ├── evaluation.js │ ├── evaluation.js.map │ ├── evaluator.js │ ├── evaluator.js.map │ ├── evaluator.ts │ ├── move.js │ ├── move.js.map │ ├── move.ts │ ├── moves.js │ ├── moves.js.map │ ├── moves.ts │ ├── pieces.js │ ├── pieces.js.map │ ├── pieces.ts │ ├── suggestor.js │ ├── suggestor.js.map │ └── suggestor.ts ├── fieldcomponent.js ├── fieldcomponent.js.map ├── fieldcomponent.ts ├── history.js ├── history.js.map ├── historycomponent.js ├── historycomponent.js.map ├── historycomponent.ts ├── index.html ├── tsconfig.json ├── wikimediaimages │ ├── b_bishop.png │ ├── b_empty.png │ ├── b_king.png │ ├── b_knight.png │ ├── b_pawn.png │ ├── b_queen.png │ ├── b_rook.png │ ├── empty.png │ ├── legal notes.txt │ ├── w_bishop.png │ ├── w_empty.png │ ├── w_king.png │ ├── w_knight.png │ ├── w_pawn.png │ ├── w_queen.png │ └── w_rook.png └── wrongApproachToEvents.html ├── Tic-Tac-Toe Angular5 ├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── angular-cli.json ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── protractor.conf.js ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── game-board │ │ │ ├── game-board.component.html │ │ │ ├── game-board.component.scss │ │ │ ├── game-board.component.spec.ts │ │ │ └── game-board.component.ts │ │ ├── gameplay │ │ │ ├── engine.service.spec.ts │ │ │ ├── engine.service.ts │ │ │ ├── grid.ts │ │ │ ├── grid │ │ │ │ ├── grid.component.html │ │ │ │ ├── grid.component.scss │ │ │ │ └── grid.component.ts │ │ │ ├── history.service.spec.ts │ │ │ └── history.service.ts │ │ ├── highscore │ │ │ ├── highscore.component.html │ │ │ ├── highscore.component.scss │ │ │ ├── highscore.component.spec.ts │ │ │ ├── highscore.component.ts │ │ │ ├── highscore.module.ts │ │ │ └── highscore.ts │ │ ├── mock-http │ │ │ └── mock-http.module.ts │ │ ├── registration │ │ │ ├── is-registerd-guard.ts │ │ │ ├── registration-form.component.html │ │ │ ├── registration-form.component.scss │ │ │ ├── registration-form.component.spec.ts │ │ │ ├── registration-form.component.ts │ │ │ ├── user-service.service.ts │ │ │ └── user.service.ts │ │ └── sidebar │ │ │ ├── sidebar.component.html │ │ │ ├── sidebar.component.scss │ │ │ ├── sidebar.component.spec.ts │ │ │ └── sidebar.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── File-Tic_tac_toe.svg │ │ ├── i18n │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ └── highscore │ │ │ │ ├── de.json │ │ │ │ ├── en.json │ │ │ │ └── es.json │ │ └── mock │ │ │ ├── highscore │ │ │ └── Get.json │ │ │ └── loremipsum.txt │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ └── tsconfig.json └── tslint.json ├── Tic-Tac-Toe ├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── angular-cli.json ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── game-board │ │ │ ├── game-board.component.html │ │ │ ├── game-board.component.scss │ │ │ ├── game-board.component.spec.ts │ │ │ └── game-board.component.ts │ │ ├── gameplay │ │ │ ├── engine.service.spec.ts │ │ │ ├── engine.service.ts │ │ │ ├── grid.ts │ │ │ ├── grid │ │ │ │ ├── grid.component.html │ │ │ │ ├── grid.component.scss │ │ │ │ └── grid.component.ts │ │ │ ├── history.service.spec.ts │ │ │ └── history.service.ts │ │ ├── highscore │ │ │ ├── highscore.component.html │ │ │ ├── highscore.component.scss │ │ │ ├── highscore.component.spec.ts │ │ │ ├── highscore.component.ts │ │ │ ├── highscore.module.ts │ │ │ └── highscore.ts │ │ ├── mock-http │ │ │ └── mock-http.module.ts │ │ ├── registration │ │ │ ├── is-registerd-guard.ts │ │ │ ├── registration-form.component.html │ │ │ ├── registration-form.component.scss │ │ │ ├── registration-form.component.spec.ts │ │ │ ├── registration-form.component.ts │ │ │ ├── user-service.service.ts │ │ │ └── user.service.ts │ │ └── sidebar │ │ │ ├── sidebar.component.html │ │ │ ├── sidebar.component.scss │ │ │ ├── sidebar.component.spec.ts │ │ │ └── sidebar.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── File-Tic_tac_toe.svg │ │ ├── i18n │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ └── highscore │ │ │ │ ├── de.json │ │ │ │ ├── en.json │ │ │ │ └── es.json │ │ └── mock │ │ │ ├── highscore │ │ │ └── Get.json │ │ │ └── loremipsum.txt │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ └── tsconfig.json └── tslint.json ├── animations ├── carousel_sketch_1 │ ├── .angular-cli.json │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── karma.conf.js │ ├── package.json │ ├── protractor.conf.js │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── carousel │ │ │ │ ├── carousel.component.css │ │ │ │ ├── carousel.component.html │ │ │ │ ├── carousel.component.spec.ts │ │ │ │ └── carousel.component.ts │ │ │ └── tile │ │ │ │ ├── tile.component.css │ │ │ │ ├── tile.component.html │ │ │ │ ├── tile.component.spec.ts │ │ │ │ └── tile.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── typings.d.ts │ ├── tsconfig.json │ └── tslint.json ├── carousel_sketch_2 │ ├── .angular-cli.json │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── karma.conf.js │ ├── package.json │ ├── protractor.conf.js │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── carousel │ │ │ │ ├── carousel.component.css │ │ │ │ ├── carousel.component.html │ │ │ │ ├── carousel.component.spec.ts │ │ │ │ └── carousel.component.ts │ │ │ └── tile │ │ │ │ ├── tile.component.css │ │ │ │ ├── tile.component.html │ │ │ │ ├── tile.component.spec.ts │ │ │ │ └── tile.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── typings.d.ts │ ├── tsconfig.json │ └── tslint.json ├── carousel_sketch_3 │ ├── .angular-cli.json │ ├── .editorconfig │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── e2e │ │ ├── app.e2e-spec.ts │ │ ├── app.po.ts │ │ └── tsconfig.e2e.json │ ├── karma.conf.js │ ├── package.json │ ├── protractor.conf.js │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── multi-carousel │ │ │ │ ├── multi-carousel.component.css │ │ │ │ ├── multi-carousel.component.html │ │ │ │ ├── multi-carousel.component.spec.ts │ │ │ │ └── multi-carousel.component.ts │ │ │ └── tile │ │ │ │ ├── tile.component.css │ │ │ │ ├── tile.component.html │ │ │ │ ├── tile.component.spec.ts │ │ │ │ └── tile.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── typings.d.ts │ ├── tsconfig.json │ └── tslint.json └── upside-down │ ├── .angular-cli.json │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.e2e.json │ ├── karma.conf.js │ ├── package.json │ ├── protractor.conf.js │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── back-side │ │ │ ├── back-side.component.css │ │ │ ├── back-side.component.html │ │ │ ├── back-side.component.spec.ts │ │ │ └── back-side.component.ts │ │ └── front-side │ │ │ ├── front-side.component.css │ │ │ ├── front-side.component.html │ │ │ ├── front-side.component.spec.ts │ │ │ └── front-side.component.ts │ ├── assets │ │ ├── .gitkeep │ │ └── maxpixel.freegreatpicture.com-Mechanics-Gears-Iron-Transmission-Technology-1865621.jpg │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts │ ├── tsconfig.json │ └── tslint.json ├── asychronous ├── .angular-cli.json ├── .editorconfig ├── .gitignore ├── README.md ├── asychronous.iml ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── language │ │ │ └── language.service.ts │ │ ├── mock-http │ │ │ └── mock-http.module.ts │ │ ├── translations │ │ │ ├── translation.ts │ │ │ └── translations.service.ts │ │ ├── user-and-language │ │ │ ├── user-and-language.component.css │ │ │ ├── user-and-language.component.html │ │ │ └── user-and-language.component.ts │ │ ├── user-language-and-translation │ │ │ ├── user-language-and-translation.component.css │ │ │ ├── user-language-and-translation.component.html │ │ │ └── user-language-and-translation.component.ts │ │ └── user │ │ │ ├── address.ts │ │ │ ├── user.component.css │ │ │ ├── user.component.html │ │ │ ├── user.component.ts │ │ │ └── user.service.ts │ ├── assets │ │ ├── .gitkeep │ │ └── mock │ │ │ ├── loremipsum.txt │ │ │ ├── translations │ │ │ └── spanish │ │ │ │ └── Get.json │ │ │ └── user │ │ │ ├── address │ │ │ └── Get.json │ │ │ └── language │ │ │ └── Get.json │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts ├── tsconfig.json └── tslint.json ├── charts ├── complexCharts │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular-cli.json │ ├── charts.iml │ ├── e2e │ │ ├── app.e2e-spec.ts │ │ ├── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── protractor.conf.js │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── common │ │ │ │ ├── Series.ts │ │ │ │ ├── SeriesEntry.ts │ │ │ │ └── data.ts │ │ │ ├── consumption │ │ │ │ ├── consumption.component.css │ │ │ │ ├── consumption.component.html │ │ │ │ └── consumption.component.ts │ │ │ ├── line-range-chart │ │ │ │ ├── index.ts │ │ │ │ ├── line-range-chart.component.ts │ │ │ │ ├── line-range-chart.module.ts │ │ │ │ ├── line-range-series.component.ts │ │ │ │ └── line-range.component.ts │ │ │ └── services │ │ │ │ ├── consumption-data-service.ts │ │ │ │ ├── consumption-entry.ts │ │ │ │ ├── consumption-json-entry.ts │ │ │ │ └── jquery.csv.js │ │ ├── assets │ │ │ └── fuel │ │ │ │ ├── civic_fuelings.csv │ │ │ │ ├── legend.html │ │ │ │ └── león_fuelings.csv │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ts │ │ └── tsconfig.json │ └── tslint.json └── minimalLineChart │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular-cli.json │ ├── charts.iml │ ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.json │ ├── karma.conf.js │ ├── package.json │ ├── protractor.conf.js │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── common │ │ │ ├── Series.ts │ │ │ ├── SeriesEntry.ts │ │ │ └── data.ts │ │ ├── consumption │ │ │ ├── consumption.component.css │ │ │ ├── consumption.component.html │ │ │ └── consumption.component.ts │ │ └── services │ │ │ ├── consumption-data-service.ts │ │ │ ├── consumption-entry.ts │ │ │ ├── consumption-json-entry.ts │ │ │ └── jquery.csv.js │ ├── assets │ │ └── fuel │ │ │ ├── civic_fuelings.csv │ │ │ ├── legend.html │ │ │ └── león_fuelings.csv │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ └── tsconfig.json │ └── tslint.json ├── datatables ├── .editorconfig ├── .gitignore ├── README.md ├── angular-cli.json ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── datatables │ │ │ ├── datatables.component.css │ │ │ ├── datatables.component.html │ │ │ ├── datatables.component.spec.ts │ │ │ └── datatables.component.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ └── tsconfig.json └── tslint.json ├── embedding-pdf └── README.md ├── minesweeper ├── app.html ├── app.ts ├── index.html └── package.json ├── ng2d3charts ├── .editorconfig ├── .gitignore ├── README.md ├── angular-cli.json ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── ng2d3charts.iml ├── package.json ├── protractor.conf.js ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── d3.ts │ │ ├── data.ts │ │ ├── index.ts │ │ └── linechart │ │ │ ├── linechart.component.css │ │ │ ├── linechart.component.html │ │ │ ├── linechart.component.spec.ts │ │ │ └── linechart.component.ts │ ├── assets │ │ ├── .gitkeep │ │ └── ng2d3.css │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.json │ └── typings.d.ts └── tslint.json ├── pascals-triangle ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── state │ │ │ ├── mobx-state.ts │ │ │ ├── state.ts │ │ │ └── triangle.service.ts │ │ └── triangle │ │ │ ├── triangle.component.css │ │ │ ├── triangle.component.html │ │ │ └── triangle.component.ts │ ├── assets │ │ └── .gitkeep │ ├── browserslist │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json ├── tsconfig.json └── tslint.json ├── quickstart ├── .gitignore ├── app │ ├── app.component.ts │ └── boot.ts ├── assets │ ├── css │ │ ├── bootstrap-theme.min.css │ │ └── bootstrap.min.css │ └── js │ │ ├── bootstrap.min.js │ │ └── jquery-2.2.0.min.js ├── index.html ├── package.json └── tsconfig.json └── treasure ├── applicationcomponent.html ├── applicationcomponent.js ├── applicationcomponent.js.map ├── applicationcomponent.ts ├── bootstrap.min.css ├── index.html ├── map.js ├── map.js.map ├── mapcomponent.html ├── mapcomponent.js ├── mapcomponent.js.map ├── mapcomponent.ts ├── package.json ├── piechart.css ├── piechart.html └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/.gitignore -------------------------------------------------------------------------------- /Blog01/ApplicationComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/ApplicationComponent.html -------------------------------------------------------------------------------- /Blog01/ChessboardComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/ChessboardComponent.html -------------------------------------------------------------------------------- /Blog01/FieldComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/FieldComponent.html -------------------------------------------------------------------------------- /Blog01/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/LICENSE -------------------------------------------------------------------------------- /Blog01/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/README.MD -------------------------------------------------------------------------------- /Blog01/applicationcomponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/applicationcomponent.js -------------------------------------------------------------------------------- /Blog01/applicationcomponent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/applicationcomponent.js.map -------------------------------------------------------------------------------- /Blog01/applicationcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/applicationcomponent.ts -------------------------------------------------------------------------------- /Blog01/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/bootstrap.min.css -------------------------------------------------------------------------------- /Blog01/chess.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/chess.css -------------------------------------------------------------------------------- /Blog01/chessboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/chessboard.js -------------------------------------------------------------------------------- /Blog01/chessboard.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/chessboard.js.map -------------------------------------------------------------------------------- /Blog01/chessboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/chessboard.ts -------------------------------------------------------------------------------- /Blog01/chessboardcomponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/chessboardcomponent.js -------------------------------------------------------------------------------- /Blog01/chessboardcomponent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/chessboardcomponent.js.map -------------------------------------------------------------------------------- /Blog01/chessboardcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/chessboardcomponent.ts -------------------------------------------------------------------------------- /Blog01/chessboardui.html: -------------------------------------------------------------------------------- 1 | dummy content 2 | -------------------------------------------------------------------------------- /Blog01/chessboardui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/chessboardui.js -------------------------------------------------------------------------------- /Blog01/chessboardui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/chessboardui.js.map -------------------------------------------------------------------------------- /Blog01/chessboardui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/chessboardui.ts -------------------------------------------------------------------------------- /Blog01/evaluator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/evaluator.js -------------------------------------------------------------------------------- /Blog01/evaluator.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/evaluator.js.map -------------------------------------------------------------------------------- /Blog01/evaluator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/evaluator.ts -------------------------------------------------------------------------------- /Blog01/fieldcomponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/fieldcomponent.js -------------------------------------------------------------------------------- /Blog01/fieldcomponent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/fieldcomponent.js.map -------------------------------------------------------------------------------- /Blog01/fieldcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/fieldcomponent.ts -------------------------------------------------------------------------------- /Blog01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/index.html -------------------------------------------------------------------------------- /Blog01/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/move.js -------------------------------------------------------------------------------- /Blog01/move.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/move.js.map -------------------------------------------------------------------------------- /Blog01/move.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/move.ts -------------------------------------------------------------------------------- /Blog01/moves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/moves.js -------------------------------------------------------------------------------- /Blog01/moves.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/moves.js.map -------------------------------------------------------------------------------- /Blog01/moves.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/moves.ts -------------------------------------------------------------------------------- /Blog01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/package.json -------------------------------------------------------------------------------- /Blog01/pieces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/pieces.js -------------------------------------------------------------------------------- /Blog01/pieces.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/pieces.js.map -------------------------------------------------------------------------------- /Blog01/pieces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/pieces.ts -------------------------------------------------------------------------------- /Blog01/suggestor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/suggestor.js -------------------------------------------------------------------------------- /Blog01/suggestor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/suggestor.js.map -------------------------------------------------------------------------------- /Blog01/suggestor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/suggestor.ts -------------------------------------------------------------------------------- /Blog01/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/tsconfig.json -------------------------------------------------------------------------------- /Blog01/wikimediaimages/b_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/wikimediaimages/b_bishop.png -------------------------------------------------------------------------------- /Blog01/wikimediaimages/b_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/wikimediaimages/b_empty.png -------------------------------------------------------------------------------- /Blog01/wikimediaimages/b_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/wikimediaimages/b_king.png -------------------------------------------------------------------------------- /Blog01/wikimediaimages/b_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/wikimediaimages/b_knight.png -------------------------------------------------------------------------------- /Blog01/wikimediaimages/b_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/wikimediaimages/b_pawn.png -------------------------------------------------------------------------------- /Blog01/wikimediaimages/b_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/wikimediaimages/b_queen.png -------------------------------------------------------------------------------- /Blog01/wikimediaimages/b_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/wikimediaimages/b_rook.png -------------------------------------------------------------------------------- /Blog01/wikimediaimages/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/wikimediaimages/empty.png -------------------------------------------------------------------------------- /Blog01/wikimediaimages/legal notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/wikimediaimages/legal notes.txt -------------------------------------------------------------------------------- /Blog01/wikimediaimages/w_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/wikimediaimages/w_bishop.png -------------------------------------------------------------------------------- /Blog01/wikimediaimages/w_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/wikimediaimages/w_empty.png -------------------------------------------------------------------------------- /Blog01/wikimediaimages/w_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/wikimediaimages/w_king.png -------------------------------------------------------------------------------- /Blog01/wikimediaimages/w_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/wikimediaimages/w_knight.png -------------------------------------------------------------------------------- /Blog01/wikimediaimages/w_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/wikimediaimages/w_pawn.png -------------------------------------------------------------------------------- /Blog01/wikimediaimages/w_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/wikimediaimages/w_queen.png -------------------------------------------------------------------------------- /Blog01/wikimediaimages/w_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog01/wikimediaimages/w_rook.png -------------------------------------------------------------------------------- /Blog02/ApplicationComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/ApplicationComponent.html -------------------------------------------------------------------------------- /Blog02/ChessboardComponent_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/ChessboardComponent_.html -------------------------------------------------------------------------------- /Blog02/FieldComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/FieldComponent.html -------------------------------------------------------------------------------- /Blog02/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/LICENSE -------------------------------------------------------------------------------- /Blog02/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/README.MD -------------------------------------------------------------------------------- /Blog02/applicationcomponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/applicationcomponent.js -------------------------------------------------------------------------------- /Blog02/applicationcomponent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/applicationcomponent.js.map -------------------------------------------------------------------------------- /Blog02/applicationcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/applicationcomponent.ts -------------------------------------------------------------------------------- /Blog02/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/bootstrap.min.css -------------------------------------------------------------------------------- /Blog02/chess.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/chess.css -------------------------------------------------------------------------------- /Blog02/chessboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/chessboard.js -------------------------------------------------------------------------------- /Blog02/chessboard.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/chessboard.js.map -------------------------------------------------------------------------------- /Blog02/chessboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/chessboard.ts -------------------------------------------------------------------------------- /Blog02/chessboardcomponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/chessboardcomponent.js -------------------------------------------------------------------------------- /Blog02/chessboardcomponent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/chessboardcomponent.js.map -------------------------------------------------------------------------------- /Blog02/chessboardcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/chessboardcomponent.ts -------------------------------------------------------------------------------- /Blog02/chessboardui.html: -------------------------------------------------------------------------------- 1 | dummy content 2 | -------------------------------------------------------------------------------- /Blog02/chessboardui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/chessboardui.js -------------------------------------------------------------------------------- /Blog02/chessboardui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/chessboardui.js.map -------------------------------------------------------------------------------- /Blog02/chessboardui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/chessboardui.ts -------------------------------------------------------------------------------- /Blog02/evaluator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/evaluator.js -------------------------------------------------------------------------------- /Blog02/evaluator.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/evaluator.js.map -------------------------------------------------------------------------------- /Blog02/evaluator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/evaluator.ts -------------------------------------------------------------------------------- /Blog02/fieldcomponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/fieldcomponent.js -------------------------------------------------------------------------------- /Blog02/fieldcomponent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/fieldcomponent.js.map -------------------------------------------------------------------------------- /Blog02/fieldcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/fieldcomponent.ts -------------------------------------------------------------------------------- /Blog02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/index.html -------------------------------------------------------------------------------- /Blog02/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/move.js -------------------------------------------------------------------------------- /Blog02/move.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/move.js.map -------------------------------------------------------------------------------- /Blog02/move.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/move.ts -------------------------------------------------------------------------------- /Blog02/moves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/moves.js -------------------------------------------------------------------------------- /Blog02/moves.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/moves.js.map -------------------------------------------------------------------------------- /Blog02/moves.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/moves.ts -------------------------------------------------------------------------------- /Blog02/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/package.json -------------------------------------------------------------------------------- /Blog02/pieces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/pieces.js -------------------------------------------------------------------------------- /Blog02/pieces.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/pieces.js.map -------------------------------------------------------------------------------- /Blog02/pieces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/pieces.ts -------------------------------------------------------------------------------- /Blog02/suggestor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/suggestor.js -------------------------------------------------------------------------------- /Blog02/suggestor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/suggestor.js.map -------------------------------------------------------------------------------- /Blog02/suggestor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/suggestor.ts -------------------------------------------------------------------------------- /Blog02/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/tsconfig.json -------------------------------------------------------------------------------- /Blog02/wikimediaimages/b_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/wikimediaimages/b_bishop.png -------------------------------------------------------------------------------- /Blog02/wikimediaimages/b_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/wikimediaimages/b_empty.png -------------------------------------------------------------------------------- /Blog02/wikimediaimages/b_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/wikimediaimages/b_king.png -------------------------------------------------------------------------------- /Blog02/wikimediaimages/b_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/wikimediaimages/b_knight.png -------------------------------------------------------------------------------- /Blog02/wikimediaimages/b_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/wikimediaimages/b_pawn.png -------------------------------------------------------------------------------- /Blog02/wikimediaimages/b_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/wikimediaimages/b_queen.png -------------------------------------------------------------------------------- /Blog02/wikimediaimages/b_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/wikimediaimages/b_rook.png -------------------------------------------------------------------------------- /Blog02/wikimediaimages/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/wikimediaimages/empty.png -------------------------------------------------------------------------------- /Blog02/wikimediaimages/legal notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/wikimediaimages/legal notes.txt -------------------------------------------------------------------------------- /Blog02/wikimediaimages/w_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/wikimediaimages/w_bishop.png -------------------------------------------------------------------------------- /Blog02/wikimediaimages/w_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/wikimediaimages/w_empty.png -------------------------------------------------------------------------------- /Blog02/wikimediaimages/w_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/wikimediaimages/w_king.png -------------------------------------------------------------------------------- /Blog02/wikimediaimages/w_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/wikimediaimages/w_knight.png -------------------------------------------------------------------------------- /Blog02/wikimediaimages/w_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/wikimediaimages/w_pawn.png -------------------------------------------------------------------------------- /Blog02/wikimediaimages/w_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/wikimediaimages/w_queen.png -------------------------------------------------------------------------------- /Blog02/wikimediaimages/w_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Blog02/wikimediaimages/w_rook.png -------------------------------------------------------------------------------- /BootstrapSideMenu/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/.angular-cli.json -------------------------------------------------------------------------------- /BootstrapSideMenu/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/.editorconfig -------------------------------------------------------------------------------- /BootstrapSideMenu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/.gitignore -------------------------------------------------------------------------------- /BootstrapSideMenu/BootstrapSideMenu.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/BootstrapSideMenu.iml -------------------------------------------------------------------------------- /BootstrapSideMenu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/README.md -------------------------------------------------------------------------------- /BootstrapSideMenu/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /BootstrapSideMenu/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/e2e/app.po.ts -------------------------------------------------------------------------------- /BootstrapSideMenu/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /BootstrapSideMenu/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/karma.conf.js -------------------------------------------------------------------------------- /BootstrapSideMenu/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/package.json -------------------------------------------------------------------------------- /BootstrapSideMenu/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/protractor.conf.js -------------------------------------------------------------------------------- /BootstrapSideMenu/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BootstrapSideMenu/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/src/app/app.component.html -------------------------------------------------------------------------------- /BootstrapSideMenu/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /BootstrapSideMenu/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/src/app/app.component.ts -------------------------------------------------------------------------------- /BootstrapSideMenu/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/src/app/app.module.ts -------------------------------------------------------------------------------- /BootstrapSideMenu/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BootstrapSideMenu/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /BootstrapSideMenu/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/src/favicon.ico -------------------------------------------------------------------------------- /BootstrapSideMenu/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/src/index.html -------------------------------------------------------------------------------- /BootstrapSideMenu/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/src/main.ts -------------------------------------------------------------------------------- /BootstrapSideMenu/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/src/polyfills.ts -------------------------------------------------------------------------------- /BootstrapSideMenu/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/src/styles.css -------------------------------------------------------------------------------- /BootstrapSideMenu/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/src/test.ts -------------------------------------------------------------------------------- /BootstrapSideMenu/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/src/tsconfig.app.json -------------------------------------------------------------------------------- /BootstrapSideMenu/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/src/tsconfig.spec.json -------------------------------------------------------------------------------- /BootstrapSideMenu/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/src/typings.d.ts -------------------------------------------------------------------------------- /BootstrapSideMenu/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/tsconfig.json -------------------------------------------------------------------------------- /BootstrapSideMenu/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/BootstrapSideMenu/tslint.json -------------------------------------------------------------------------------- /Chess ng2 alpha 46/ApplicationComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/ApplicationComponent.html -------------------------------------------------------------------------------- /Chess ng2 alpha 46/CapturedPiecesComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/CapturedPiecesComponent.html -------------------------------------------------------------------------------- /Chess ng2 alpha 46/ChessboardComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/ChessboardComponent.html -------------------------------------------------------------------------------- /Chess ng2 alpha 46/DI-Example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/DI-Example/index.html -------------------------------------------------------------------------------- /Chess ng2 alpha 46/DI-Example/pane.html: -------------------------------------------------------------------------------- 1 | This is a pane.
2 | -------------------------------------------------------------------------------- /Chess ng2 alpha 46/DI-Example/tab.html: -------------------------------------------------------------------------------- 1 | This is an example of a tab strip.
2 | -------------------------------------------------------------------------------- /Chess ng2 alpha 46/DI-Example/tab0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/DI-Example/tab0.js -------------------------------------------------------------------------------- /Chess ng2 alpha 46/DI-Example/tab0.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/DI-Example/tab0.js.map -------------------------------------------------------------------------------- /Chess ng2 alpha 46/DI-Example/tab0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/DI-Example/tab0.ts -------------------------------------------------------------------------------- /Chess ng2 alpha 46/FieldComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/FieldComponent.html -------------------------------------------------------------------------------- /Chess ng2 alpha 46/HistoryComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/HistoryComponent.html -------------------------------------------------------------------------------- /Chess ng2 alpha 46/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/LICENSE -------------------------------------------------------------------------------- /Chess ng2 alpha 46/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/README.MD -------------------------------------------------------------------------------- /Chess ng2 alpha 46/SettingsComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/SettingsComponent.html -------------------------------------------------------------------------------- /Chess ng2 alpha 46/_snippets.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chess ng2 alpha 46/applicationcomponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/applicationcomponent.js -------------------------------------------------------------------------------- /Chess ng2 alpha 46/applicationcomponent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/applicationcomponent.js.map -------------------------------------------------------------------------------- /Chess ng2 alpha 46/applicationcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/applicationcomponent.ts -------------------------------------------------------------------------------- /Chess ng2 alpha 46/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/bootstrap.min.css -------------------------------------------------------------------------------- /Chess ng2 alpha 46/capturedpiecescomponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/capturedpiecescomponent.js -------------------------------------------------------------------------------- /Chess ng2 alpha 46/capturedpiecescomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/capturedpiecescomponent.ts -------------------------------------------------------------------------------- /Chess ng2 alpha 46/cheat.sheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/cheat.sheet -------------------------------------------------------------------------------- /Chess ng2 alpha 46/chess.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/chess.css -------------------------------------------------------------------------------- /Chess ng2 alpha 46/chessboardcomponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/chessboardcomponent.js -------------------------------------------------------------------------------- /Chess ng2 alpha 46/chessboardcomponent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/chessboardcomponent.js.map -------------------------------------------------------------------------------- /Chess ng2 alpha 46/chessboardcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/chessboardcomponent.ts -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/chessboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/chessboard.js -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/chessboard.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/chessboard.js.map -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/chessboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/chessboard.ts -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/chessboardUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/chessboardUI.js -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/chessboardUI.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/chessboardUI.js.map -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/chessboardUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/chessboardUI.ts -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/evaluation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/evaluation.js -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/evaluation.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/evaluation.js.map -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/evaluator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/evaluator.js -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/evaluator.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/evaluator.js.map -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/evaluator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/evaluator.ts -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/move.js -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/move.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/move.js.map -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/move.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/move.ts -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/moves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/moves.js -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/moves.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/moves.js.map -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/moves.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/moves.ts -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/pieces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/pieces.js -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/pieces.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/pieces.js.map -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/pieces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/pieces.ts -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/suggestor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/suggestor.js -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/suggestor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/suggestor.js.map -------------------------------------------------------------------------------- /Chess ng2 alpha 46/engine/suggestor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/engine/suggestor.ts -------------------------------------------------------------------------------- /Chess ng2 alpha 46/fieldcomponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/fieldcomponent.js -------------------------------------------------------------------------------- /Chess ng2 alpha 46/fieldcomponent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/fieldcomponent.js.map -------------------------------------------------------------------------------- /Chess ng2 alpha 46/fieldcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/fieldcomponent.ts -------------------------------------------------------------------------------- /Chess ng2 alpha 46/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/history.js -------------------------------------------------------------------------------- /Chess ng2 alpha 46/history.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/history.js.map -------------------------------------------------------------------------------- /Chess ng2 alpha 46/historycomponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/historycomponent.js -------------------------------------------------------------------------------- /Chess ng2 alpha 46/historycomponent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/historycomponent.js.map -------------------------------------------------------------------------------- /Chess ng2 alpha 46/historycomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/historycomponent.ts -------------------------------------------------------------------------------- /Chess ng2 alpha 46/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/index.html -------------------------------------------------------------------------------- /Chess ng2 alpha 46/npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/npm-debug.log -------------------------------------------------------------------------------- /Chess ng2 alpha 46/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/package.json -------------------------------------------------------------------------------- /Chess ng2 alpha 46/piechart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/piechart.html -------------------------------------------------------------------------------- /Chess ng2 alpha 46/settingsComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/settingsComponent.js -------------------------------------------------------------------------------- /Chess ng2 alpha 46/settingsComponent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/settingsComponent.js.map -------------------------------------------------------------------------------- /Chess ng2 alpha 46/settingscomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/settingscomponent.ts -------------------------------------------------------------------------------- /Chess ng2 alpha 46/settingscomponentl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/settingscomponentl.js -------------------------------------------------------------------------------- /Chess ng2 alpha 46/settingscomponentl.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/settingscomponentl.js.map -------------------------------------------------------------------------------- /Chess ng2 alpha 46/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/tsconfig.json -------------------------------------------------------------------------------- /Chess ng2 alpha 46/wikimediaimages/b_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/wikimediaimages/b_bishop.png -------------------------------------------------------------------------------- /Chess ng2 alpha 46/wikimediaimages/b_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/wikimediaimages/b_empty.png -------------------------------------------------------------------------------- /Chess ng2 alpha 46/wikimediaimages/b_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/wikimediaimages/b_king.png -------------------------------------------------------------------------------- /Chess ng2 alpha 46/wikimediaimages/b_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/wikimediaimages/b_knight.png -------------------------------------------------------------------------------- /Chess ng2 alpha 46/wikimediaimages/b_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/wikimediaimages/b_pawn.png -------------------------------------------------------------------------------- /Chess ng2 alpha 46/wikimediaimages/b_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/wikimediaimages/b_queen.png -------------------------------------------------------------------------------- /Chess ng2 alpha 46/wikimediaimages/b_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/wikimediaimages/b_rook.png -------------------------------------------------------------------------------- /Chess ng2 alpha 46/wikimediaimages/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/wikimediaimages/empty.png -------------------------------------------------------------------------------- /Chess ng2 alpha 46/wikimediaimages/w_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/wikimediaimages/w_bishop.png -------------------------------------------------------------------------------- /Chess ng2 alpha 46/wikimediaimages/w_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/wikimediaimages/w_empty.png -------------------------------------------------------------------------------- /Chess ng2 alpha 46/wikimediaimages/w_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/wikimediaimages/w_king.png -------------------------------------------------------------------------------- /Chess ng2 alpha 46/wikimediaimages/w_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/wikimediaimages/w_knight.png -------------------------------------------------------------------------------- /Chess ng2 alpha 46/wikimediaimages/w_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/wikimediaimages/w_pawn.png -------------------------------------------------------------------------------- /Chess ng2 alpha 46/wikimediaimages/w_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/wikimediaimages/w_queen.png -------------------------------------------------------------------------------- /Chess ng2 alpha 46/wikimediaimages/w_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/wikimediaimages/w_rook.png -------------------------------------------------------------------------------- /Chess ng2 alpha 46/wrongApproachToEvents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess ng2 alpha 46/wrongApproachToEvents.html -------------------------------------------------------------------------------- /Chess/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/.gitignore -------------------------------------------------------------------------------- /Chess/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/LICENSE -------------------------------------------------------------------------------- /Chess/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/README.MD -------------------------------------------------------------------------------- /Chess/angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/angular-cli.json -------------------------------------------------------------------------------- /Chess/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /Chess/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/e2e/app.po.ts -------------------------------------------------------------------------------- /Chess/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/e2e/tsconfig.json -------------------------------------------------------------------------------- /Chess/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/karma.conf.js -------------------------------------------------------------------------------- /Chess/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/package.json -------------------------------------------------------------------------------- /Chess/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/protractor.conf.js -------------------------------------------------------------------------------- /Chess/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /Chess/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chess/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |

2 | {{title}} 3 |

4 | -------------------------------------------------------------------------------- /Chess/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chess/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/app/app.component.ts -------------------------------------------------------------------------------- /Chess/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/app/app.module.ts -------------------------------------------------------------------------------- /Chess/src/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/app/index.ts -------------------------------------------------------------------------------- /Chess/src/app/shared/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chess/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chess/src/assets/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chess/src/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chess/src/assets/css/chess.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/assets/css/chess.css -------------------------------------------------------------------------------- /Chess/src/assets/wikimediaimages/b_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/assets/wikimediaimages/b_bishop.png -------------------------------------------------------------------------------- /Chess/src/assets/wikimediaimages/b_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/assets/wikimediaimages/b_empty.png -------------------------------------------------------------------------------- /Chess/src/assets/wikimediaimages/b_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/assets/wikimediaimages/b_king.png -------------------------------------------------------------------------------- /Chess/src/assets/wikimediaimages/b_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/assets/wikimediaimages/b_knight.png -------------------------------------------------------------------------------- /Chess/src/assets/wikimediaimages/b_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/assets/wikimediaimages/b_pawn.png -------------------------------------------------------------------------------- /Chess/src/assets/wikimediaimages/b_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/assets/wikimediaimages/b_queen.png -------------------------------------------------------------------------------- /Chess/src/assets/wikimediaimages/b_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/assets/wikimediaimages/b_rook.png -------------------------------------------------------------------------------- /Chess/src/assets/wikimediaimages/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/assets/wikimediaimages/empty.png -------------------------------------------------------------------------------- /Chess/src/assets/wikimediaimages/w_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/assets/wikimediaimages/w_bishop.png -------------------------------------------------------------------------------- /Chess/src/assets/wikimediaimages/w_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/assets/wikimediaimages/w_empty.png -------------------------------------------------------------------------------- /Chess/src/assets/wikimediaimages/w_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/assets/wikimediaimages/w_king.png -------------------------------------------------------------------------------- /Chess/src/assets/wikimediaimages/w_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/assets/wikimediaimages/w_knight.png -------------------------------------------------------------------------------- /Chess/src/assets/wikimediaimages/w_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/assets/wikimediaimages/w_pawn.png -------------------------------------------------------------------------------- /Chess/src/assets/wikimediaimages/w_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/assets/wikimediaimages/w_queen.png -------------------------------------------------------------------------------- /Chess/src/assets/wikimediaimages/w_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/assets/wikimediaimages/w_rook.png -------------------------------------------------------------------------------- /Chess/src/chess-app/chess.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chess/src/chess-app/chess.component.full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/chess-app/chess.component.full.html -------------------------------------------------------------------------------- /Chess/src/chess-app/chess.component.full.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/chess-app/chess.component.full.ts -------------------------------------------------------------------------------- /Chess/src/chess-app/chess.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/chess-app/chess.component.html -------------------------------------------------------------------------------- /Chess/src/chess-app/chess.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/chess-app/chess.component.ts -------------------------------------------------------------------------------- /Chess/src/chessboard/ChessboardComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/chessboard/ChessboardComponent.html -------------------------------------------------------------------------------- /Chess/src/chessboard/chessboardcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/chessboard/chessboardcomponent.ts -------------------------------------------------------------------------------- /Chess/src/engine/chessboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/engine/chessboard.ts -------------------------------------------------------------------------------- /Chess/src/engine/chessboardUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/engine/chessboardUI.ts -------------------------------------------------------------------------------- /Chess/src/engine/evaluator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/engine/evaluator.ts -------------------------------------------------------------------------------- /Chess/src/engine/move.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/engine/move.ts -------------------------------------------------------------------------------- /Chess/src/engine/moves.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/engine/moves.ts -------------------------------------------------------------------------------- /Chess/src/engine/pieces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/engine/pieces.ts -------------------------------------------------------------------------------- /Chess/src/engine/suggestor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/engine/suggestor.ts -------------------------------------------------------------------------------- /Chess/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Chess/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/environments/environment.ts -------------------------------------------------------------------------------- /Chess/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/favicon.ico -------------------------------------------------------------------------------- /Chess/src/field/FieldComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/field/FieldComponent.html -------------------------------------------------------------------------------- /Chess/src/field/fieldcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/field/fieldcomponent.ts -------------------------------------------------------------------------------- /Chess/src/history/HistoryComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/history/HistoryComponent.html -------------------------------------------------------------------------------- /Chess/src/history/historycomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/history/historycomponent.ts -------------------------------------------------------------------------------- /Chess/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/index.html -------------------------------------------------------------------------------- /Chess/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/main.ts -------------------------------------------------------------------------------- /Chess/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/polyfills.ts -------------------------------------------------------------------------------- /Chess/src/row/RowComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/row/RowComponent.html -------------------------------------------------------------------------------- /Chess/src/row/rowcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/row/rowcomponent.ts -------------------------------------------------------------------------------- /Chess/src/settings/SettingsComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/settings/SettingsComponent.html -------------------------------------------------------------------------------- /Chess/src/settings/settingscomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/settings/settingscomponent.ts -------------------------------------------------------------------------------- /Chess/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/styles.css -------------------------------------------------------------------------------- /Chess/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/test.ts -------------------------------------------------------------------------------- /Chess/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/tsconfig.json -------------------------------------------------------------------------------- /Chess/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/src/typings.d.ts -------------------------------------------------------------------------------- /Chess/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Chess/tslint.json -------------------------------------------------------------------------------- /ElectronPlaysChess/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/.gitignore -------------------------------------------------------------------------------- /ElectronPlaysChess/ElectronPlaysChess.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/ElectronPlaysChess.iml -------------------------------------------------------------------------------- /ElectronPlaysChess/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/LICENSE -------------------------------------------------------------------------------- /ElectronPlaysChess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/README.md -------------------------------------------------------------------------------- /ElectronPlaysChess/angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/angular-cli.json -------------------------------------------------------------------------------- /ElectronPlaysChess/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /ElectronPlaysChess/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/e2e/app.po.ts -------------------------------------------------------------------------------- /ElectronPlaysChess/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/e2e/tsconfig.json -------------------------------------------------------------------------------- /ElectronPlaysChess/electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/electron/main.js -------------------------------------------------------------------------------- /ElectronPlaysChess/electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/electron/package.json -------------------------------------------------------------------------------- /ElectronPlaysChess/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/karma.conf.js -------------------------------------------------------------------------------- /ElectronPlaysChess/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/package.json -------------------------------------------------------------------------------- /ElectronPlaysChess/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/protractor.conf.js -------------------------------------------------------------------------------- /ElectronPlaysChess/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/src/app/app.module.ts -------------------------------------------------------------------------------- /ElectronPlaysChess/src/app/chess-app/chess.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ElectronPlaysChess/src/app/engine/chessboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/src/app/engine/chessboard.ts -------------------------------------------------------------------------------- /ElectronPlaysChess/src/app/engine/evaluator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/src/app/engine/evaluator.ts -------------------------------------------------------------------------------- /ElectronPlaysChess/src/app/engine/move.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/src/app/engine/move.ts -------------------------------------------------------------------------------- /ElectronPlaysChess/src/app/engine/moves.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/src/app/engine/moves.ts -------------------------------------------------------------------------------- /ElectronPlaysChess/src/app/engine/pieces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/src/app/engine/pieces.ts -------------------------------------------------------------------------------- /ElectronPlaysChess/src/app/engine/suggestor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/src/app/engine/suggestor.ts -------------------------------------------------------------------------------- /ElectronPlaysChess/src/app/row/rowcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/src/app/row/rowcomponent.ts -------------------------------------------------------------------------------- /ElectronPlaysChess/src/app/shared/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ElectronPlaysChess/src/assets/css/chess.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/src/assets/css/chess.css -------------------------------------------------------------------------------- /ElectronPlaysChess/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /ElectronPlaysChess/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/src/favicon.ico -------------------------------------------------------------------------------- /ElectronPlaysChess/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/src/index.html -------------------------------------------------------------------------------- /ElectronPlaysChess/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/src/main.ts -------------------------------------------------------------------------------- /ElectronPlaysChess/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/src/polyfills.ts -------------------------------------------------------------------------------- /ElectronPlaysChess/src/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/src/styles/styles.scss -------------------------------------------------------------------------------- /ElectronPlaysChess/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/src/test.ts -------------------------------------------------------------------------------- /ElectronPlaysChess/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/src/tsconfig.json -------------------------------------------------------------------------------- /ElectronPlaysChess/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/src/typings.d.ts -------------------------------------------------------------------------------- /ElectronPlaysChess/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess/tslint.json -------------------------------------------------------------------------------- /ElectronPlaysChess2019/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/.editorconfig -------------------------------------------------------------------------------- /ElectronPlaysChess2019/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/.gitignore -------------------------------------------------------------------------------- /ElectronPlaysChess2019/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/README.md -------------------------------------------------------------------------------- /ElectronPlaysChess2019/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/angular.json -------------------------------------------------------------------------------- /ElectronPlaysChess2019/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/e2e/protractor.conf.js -------------------------------------------------------------------------------- /ElectronPlaysChess2019/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/e2e/src/app.po.ts -------------------------------------------------------------------------------- /ElectronPlaysChess2019/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /ElectronPlaysChess2019/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/package-lock.json -------------------------------------------------------------------------------- /ElectronPlaysChess2019/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/package.json -------------------------------------------------------------------------------- /ElectronPlaysChess2019/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/src/app/app.module.ts -------------------------------------------------------------------------------- /ElectronPlaysChess2019/src/app/engine/CheckMateException.ts: -------------------------------------------------------------------------------- 1 | export class CheckMateException extends Error {} 2 | -------------------------------------------------------------------------------- /ElectronPlaysChess2019/src/app/engine/StaleMateException.ts: -------------------------------------------------------------------------------- 1 | export class StaleMateException extends Error {} 2 | -------------------------------------------------------------------------------- /ElectronPlaysChess2019/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ElectronPlaysChess2019/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/src/browserslist -------------------------------------------------------------------------------- /ElectronPlaysChess2019/src/electron.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/src/electron.main.js -------------------------------------------------------------------------------- /ElectronPlaysChess2019/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /ElectronPlaysChess2019/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/src/favicon.ico -------------------------------------------------------------------------------- /ElectronPlaysChess2019/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/src/index.html -------------------------------------------------------------------------------- /ElectronPlaysChess2019/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/src/karma.conf.js -------------------------------------------------------------------------------- /ElectronPlaysChess2019/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/src/main.ts -------------------------------------------------------------------------------- /ElectronPlaysChess2019/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/src/polyfills.ts -------------------------------------------------------------------------------- /ElectronPlaysChess2019/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/src/styles.scss -------------------------------------------------------------------------------- /ElectronPlaysChess2019/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/src/test.ts -------------------------------------------------------------------------------- /ElectronPlaysChess2019/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/src/tsconfig.app.json -------------------------------------------------------------------------------- /ElectronPlaysChess2019/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/src/tslint.json -------------------------------------------------------------------------------- /ElectronPlaysChess2019/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/tsconfig.json -------------------------------------------------------------------------------- /ElectronPlaysChess2019/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2019/tslint.json -------------------------------------------------------------------------------- /ElectronPlaysChess2025/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025/.editorconfig -------------------------------------------------------------------------------- /ElectronPlaysChess2025/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025/.gitignore -------------------------------------------------------------------------------- /ElectronPlaysChess2025/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025/.vscode/launch.json -------------------------------------------------------------------------------- /ElectronPlaysChess2025/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025/.vscode/tasks.json -------------------------------------------------------------------------------- /ElectronPlaysChess2025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025/README.md -------------------------------------------------------------------------------- /ElectronPlaysChess2025/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025/angular.json -------------------------------------------------------------------------------- /ElectronPlaysChess2025/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025/package-lock.json -------------------------------------------------------------------------------- /ElectronPlaysChess2025/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025/package.json -------------------------------------------------------------------------------- /ElectronPlaysChess2025/public/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ElectronPlaysChess2025/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025/public/favicon.ico -------------------------------------------------------------------------------- /ElectronPlaysChess2025/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025/src/app/app.config.ts -------------------------------------------------------------------------------- /ElectronPlaysChess2025/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025/src/app/app.module.ts -------------------------------------------------------------------------------- /ElectronPlaysChess2025/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025/src/app/app.routes.ts -------------------------------------------------------------------------------- /ElectronPlaysChess2025/src/app/engine/CheckMateException.ts: -------------------------------------------------------------------------------- 1 | export class CheckMateException extends Error {} 2 | -------------------------------------------------------------------------------- /ElectronPlaysChess2025/src/app/engine/StaleMateException.ts: -------------------------------------------------------------------------------- 1 | export class StaleMateException extends Error {} 2 | -------------------------------------------------------------------------------- /ElectronPlaysChess2025/src/app_dsi/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ElectronPlaysChess2025/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025/src/index.html -------------------------------------------------------------------------------- /ElectronPlaysChess2025/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025/src/main.ts -------------------------------------------------------------------------------- /ElectronPlaysChess2025/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025/src/styles.scss -------------------------------------------------------------------------------- /ElectronPlaysChess2025/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025/tsconfig.app.json -------------------------------------------------------------------------------- /ElectronPlaysChess2025/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025/tsconfig.json -------------------------------------------------------------------------------- /ElectronPlaysChess2025/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025/tsconfig.spec.json -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/.editorconfig -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/.gitignore -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/README.md -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/angular.json -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/e2e/src/app.po.ts -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/package-lock.json -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/package.json -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/src/app/engine/CheckMateException.ts: -------------------------------------------------------------------------------- 1 | export class CheckMateException extends Error {} 2 | -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/src/app/engine/StaleMateException.ts: -------------------------------------------------------------------------------- 1 | export class StaleMateException extends Error {} 2 | -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/src/browserslist -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/src/electron.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/src/electron.main.js -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/src/favicon.ico -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/src/index.html -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/src/karma.conf.js -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/src/main.ts -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/src/polyfills.ts -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/src/styles.scss -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/src/test.ts -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/src/tslint.json -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/tsconfig.json -------------------------------------------------------------------------------- /ElectronPlaysChess2025_/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ElectronPlaysChess2025_/tslint.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/README.md -------------------------------------------------------------------------------- /Step 01 Passing Parameters/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 01 Passing Parameters/LICENSE -------------------------------------------------------------------------------- /Step 01 Passing Parameters/game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 01 Passing Parameters/game.html -------------------------------------------------------------------------------- /Step 01 Passing Parameters/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 01 Passing Parameters/game.js -------------------------------------------------------------------------------- /Step 01 Passing Parameters/game.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 01 Passing Parameters/game.js.map -------------------------------------------------------------------------------- /Step 01 Passing Parameters/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 01 Passing Parameters/game.ts -------------------------------------------------------------------------------- /Step 01 Passing Parameters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 01 Passing Parameters/index.html -------------------------------------------------------------------------------- /Step 01 Passing Parameters/playground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 01 Passing Parameters/playground.html -------------------------------------------------------------------------------- /Step 01 Passing Parameters/playground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 01 Passing Parameters/playground.js -------------------------------------------------------------------------------- /Step 01 Passing Parameters/playground.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 01 Passing Parameters/playground.js.map -------------------------------------------------------------------------------- /Step 01 Passing Parameters/playground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 01 Passing Parameters/playground.ts -------------------------------------------------------------------------------- /Step 01 Passing Parameters/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 01 Passing Parameters/readme.md -------------------------------------------------------------------------------- /Step 01 Passing Parameters/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 01 Passing Parameters/tsconfig.json -------------------------------------------------------------------------------- /Step 02 Static Chessboard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/LICENSE -------------------------------------------------------------------------------- /Step 02 Static Chessboard/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/README.MD -------------------------------------------------------------------------------- /Step 02 Static Chessboard/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/app.js -------------------------------------------------------------------------------- /Step 02 Static Chessboard/app.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/app.js.map -------------------------------------------------------------------------------- /Step 02 Static Chessboard/application.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/application.html -------------------------------------------------------------------------------- /Step 02 Static Chessboard/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/application.js -------------------------------------------------------------------------------- /Step 02 Static Chessboard/application.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/application.js.map -------------------------------------------------------------------------------- /Step 02 Static Chessboard/application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/application.ts -------------------------------------------------------------------------------- /Step 02 Static Chessboard/board.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/board.js -------------------------------------------------------------------------------- /Step 02 Static Chessboard/board.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/board.js.map -------------------------------------------------------------------------------- /Step 02 Static Chessboard/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/bootstrap.min.css -------------------------------------------------------------------------------- /Step 02 Static Chessboard/chessboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/chessboard.html -------------------------------------------------------------------------------- /Step 02 Static Chessboard/chessboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/chessboard.js -------------------------------------------------------------------------------- /Step 02 Static Chessboard/chessboard.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/chessboard.js.map -------------------------------------------------------------------------------- /Step 02 Static Chessboard/chessboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/chessboard.ts -------------------------------------------------------------------------------- /Step 02 Static Chessboard/field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/field.html -------------------------------------------------------------------------------- /Step 02 Static Chessboard/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/field.js -------------------------------------------------------------------------------- /Step 02 Static Chessboard/field.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/field.js.map -------------------------------------------------------------------------------- /Step 02 Static Chessboard/field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/field.ts -------------------------------------------------------------------------------- /Step 02 Static Chessboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/index.html -------------------------------------------------------------------------------- /Step 02 Static Chessboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 02 Static Chessboard/tsconfig.json -------------------------------------------------------------------------------- /Step 03 UI Events/ApplicationComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/ApplicationComponent.html -------------------------------------------------------------------------------- /Step 03 UI Events/ChessboardComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/ChessboardComponent.html -------------------------------------------------------------------------------- /Step 03 UI Events/FieldComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/FieldComponent.html -------------------------------------------------------------------------------- /Step 03 UI Events/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/LICENSE -------------------------------------------------------------------------------- /Step 03 UI Events/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/README.MD -------------------------------------------------------------------------------- /Step 03 UI Events/applicationcomponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/applicationcomponent.js -------------------------------------------------------------------------------- /Step 03 UI Events/applicationcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/applicationcomponent.ts -------------------------------------------------------------------------------- /Step 03 UI Events/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/bootstrap.min.css -------------------------------------------------------------------------------- /Step 03 UI Events/chess.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/chess.css -------------------------------------------------------------------------------- /Step 03 UI Events/chessboardcomponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/chessboardcomponent.js -------------------------------------------------------------------------------- /Step 03 UI Events/chessboardcomponent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/chessboardcomponent.js.map -------------------------------------------------------------------------------- /Step 03 UI Events/chessboardcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/chessboardcomponent.ts -------------------------------------------------------------------------------- /Step 03 UI Events/engine/chessboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/engine/chessboard.js -------------------------------------------------------------------------------- /Step 03 UI Events/engine/chessboard.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/engine/chessboard.js.map -------------------------------------------------------------------------------- /Step 03 UI Events/engine/chessboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/engine/chessboard.ts -------------------------------------------------------------------------------- /Step 03 UI Events/fieldcomponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/fieldcomponent.js -------------------------------------------------------------------------------- /Step 03 UI Events/fieldcomponent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/fieldcomponent.js.map -------------------------------------------------------------------------------- /Step 03 UI Events/fieldcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/fieldcomponent.ts -------------------------------------------------------------------------------- /Step 03 UI Events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/index.html -------------------------------------------------------------------------------- /Step 03 UI Events/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/tsconfig.json -------------------------------------------------------------------------------- /Step 03 UI Events/wikimediaimages/b_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/wikimediaimages/b_king.png -------------------------------------------------------------------------------- /Step 03 UI Events/wikimediaimages/b_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/wikimediaimages/b_pawn.png -------------------------------------------------------------------------------- /Step 03 UI Events/wikimediaimages/b_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/wikimediaimages/b_rook.png -------------------------------------------------------------------------------- /Step 03 UI Events/wikimediaimages/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/wikimediaimages/empty.png -------------------------------------------------------------------------------- /Step 03 UI Events/wikimediaimages/w_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/wikimediaimages/w_king.png -------------------------------------------------------------------------------- /Step 03 UI Events/wikimediaimages/w_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/wikimediaimages/w_pawn.png -------------------------------------------------------------------------------- /Step 03 UI Events/wikimediaimages/w_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/wikimediaimages/w_rook.png -------------------------------------------------------------------------------- /Step 03 UI Events/wrongApproachToEvents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 03 UI Events/wrongApproachToEvents.html -------------------------------------------------------------------------------- /Step 04 Dependency Injection/DI-Example/pane.html: -------------------------------------------------------------------------------- 1 | This is a pane.
2 | -------------------------------------------------------------------------------- /Step 04 Dependency Injection/DI-Example/tab.html: -------------------------------------------------------------------------------- 1 | This is an example of a tab strip.
2 | -------------------------------------------------------------------------------- /Step 04 Dependency Injection/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 04 Dependency Injection/LICENSE -------------------------------------------------------------------------------- /Step 04 Dependency Injection/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 04 Dependency Injection/README.MD -------------------------------------------------------------------------------- /Step 04 Dependency Injection/_snippets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 04 Dependency Injection/_snippets.txt -------------------------------------------------------------------------------- /Step 04 Dependency Injection/cheat.sheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 04 Dependency Injection/cheat.sheet -------------------------------------------------------------------------------- /Step 04 Dependency Injection/chess.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 04 Dependency Injection/chess.css -------------------------------------------------------------------------------- /Step 04 Dependency Injection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 04 Dependency Injection/index.html -------------------------------------------------------------------------------- /Step 04 Dependency Injection/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 04 Dependency Injection/tsconfig.json -------------------------------------------------------------------------------- /Step 05 First Working Version/DI-Example/pane.html: -------------------------------------------------------------------------------- 1 | This is a pane.
2 | -------------------------------------------------------------------------------- /Step 05 First Working Version/DI-Example/tab.html: -------------------------------------------------------------------------------- 1 | This is an example of a tab strip.
2 | -------------------------------------------------------------------------------- /Step 05 First Working Version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 05 First Working Version/LICENSE -------------------------------------------------------------------------------- /Step 05 First Working Version/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 05 First Working Version/README.MD -------------------------------------------------------------------------------- /Step 05 First Working Version/_snippets.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Step 05 First Working Version/cheat.sheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 05 First Working Version/cheat.sheet -------------------------------------------------------------------------------- /Step 05 First Working Version/chess.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 05 First Working Version/chess.css -------------------------------------------------------------------------------- /Step 05 First Working Version/engine/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 05 First Working Version/engine/move.js -------------------------------------------------------------------------------- /Step 05 First Working Version/engine/move.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 05 First Working Version/engine/move.ts -------------------------------------------------------------------------------- /Step 05 First Working Version/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 05 First Working Version/history.js -------------------------------------------------------------------------------- /Step 05 First Working Version/history.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 05 First Working Version/history.js.map -------------------------------------------------------------------------------- /Step 05 First Working Version/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 05 First Working Version/index.html -------------------------------------------------------------------------------- /Step 05 First Working Version/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Step 05 First Working Version/tsconfig.json -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/.editorconfig -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/.gitignore -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/LICENSE -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/README.md -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/angular-cli.json -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/e2e/app.po.ts -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/e2e/tsconfig.json -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/karma.conf.js -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/package-lock.json -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/package.json -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/protractor.conf.js -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/src/app/app.module.ts -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/app/game-board/game-board.component.scss: -------------------------------------------------------------------------------- 1 | mat-chip-list { 2 | margin-top: 10px; 3 | } 4 | -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/app/highscore/highscore.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/app/registration/registration-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/assets/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/src/assets/i18n/de.json -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/src/assets/i18n/en.json -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/assets/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/src/assets/i18n/es.json -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/assets/i18n/highscore/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Hall of fame": "Aktuelle Highscores" 3 | } -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/assets/i18n/highscore/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "Hall of fame": "" 3 | } -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/assets/i18n/highscore/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "Hall of fame": "Salón de la fama" 3 | } -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/assets/mock/loremipsum.txt: -------------------------------------------------------------------------------- 1 | Lorem ipsum sunt dolorem. 2 | -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/src/favicon.ico -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/src/index.html -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/src/main.ts -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/src/polyfills.ts -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/src/styles.css -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/src/test.ts -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/src/tsconfig.json -------------------------------------------------------------------------------- /Tic-Tac-Toe Angular5/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe Angular5/tslint.json -------------------------------------------------------------------------------- /Tic-Tac-Toe/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/.editorconfig -------------------------------------------------------------------------------- /Tic-Tac-Toe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/.gitignore -------------------------------------------------------------------------------- /Tic-Tac-Toe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/LICENSE -------------------------------------------------------------------------------- /Tic-Tac-Toe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/README.md -------------------------------------------------------------------------------- /Tic-Tac-Toe/angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/angular-cli.json -------------------------------------------------------------------------------- /Tic-Tac-Toe/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /Tic-Tac-Toe/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/e2e/app.po.ts -------------------------------------------------------------------------------- /Tic-Tac-Toe/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/e2e/tsconfig.json -------------------------------------------------------------------------------- /Tic-Tac-Toe/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/karma.conf.js -------------------------------------------------------------------------------- /Tic-Tac-Toe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/package.json -------------------------------------------------------------------------------- /Tic-Tac-Toe/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/protractor.conf.js -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/src/app/app.component.html -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/src/app/app.component.scss -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/src/app/app.component.ts -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/src/app/app.module.ts -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/app/game-board/game-board.component.scss: -------------------------------------------------------------------------------- 1 | md-chip-list { 2 | margin-top: 10px; 3 | } 4 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/app/gameplay/grid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/src/app/gameplay/grid.ts -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/app/highscore/highscore.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/app/highscore/highscore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/src/app/highscore/highscore.ts -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/app/registration/registration-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/assets/File-Tic_tac_toe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/src/assets/File-Tic_tac_toe.svg -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/assets/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/src/assets/i18n/de.json -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/src/assets/i18n/en.json -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/assets/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/src/assets/i18n/es.json -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/assets/i18n/highscore/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Hall of fame": "Aktuelle Highscores" 3 | } -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/assets/i18n/highscore/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "Hall of fame": "" 3 | } -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/assets/i18n/highscore/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "Hall of fame": "Salón de la fama" 3 | } -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/assets/mock/loremipsum.txt: -------------------------------------------------------------------------------- 1 | Lorem ipsum sunt dolorem. 2 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/src/environments/environment.ts -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/src/favicon.ico -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/src/index.html -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/src/main.ts -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/src/polyfills.ts -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/src/styles.css -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/src/test.ts -------------------------------------------------------------------------------- /Tic-Tac-Toe/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/src/tsconfig.json -------------------------------------------------------------------------------- /Tic-Tac-Toe/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/Tic-Tac-Toe/tslint.json -------------------------------------------------------------------------------- /animations/carousel_sketch_1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_1/.editorconfig -------------------------------------------------------------------------------- /animations/carousel_sketch_1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_1/.gitignore -------------------------------------------------------------------------------- /animations/carousel_sketch_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_1/README.md -------------------------------------------------------------------------------- /animations/carousel_sketch_1/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_1/karma.conf.js -------------------------------------------------------------------------------- /animations/carousel_sketch_1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_1/package.json -------------------------------------------------------------------------------- /animations/carousel_sketch_1/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /animations/carousel_sketch_1/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /animations/carousel_sketch_1/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /animations/carousel_sketch_1/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_1/src/favicon.ico -------------------------------------------------------------------------------- /animations/carousel_sketch_1/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_1/src/index.html -------------------------------------------------------------------------------- /animations/carousel_sketch_1/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_1/src/main.ts -------------------------------------------------------------------------------- /animations/carousel_sketch_1/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_1/src/styles.css -------------------------------------------------------------------------------- /animations/carousel_sketch_1/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_1/src/test.ts -------------------------------------------------------------------------------- /animations/carousel_sketch_1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_1/tsconfig.json -------------------------------------------------------------------------------- /animations/carousel_sketch_1/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_1/tslint.json -------------------------------------------------------------------------------- /animations/carousel_sketch_2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_2/.editorconfig -------------------------------------------------------------------------------- /animations/carousel_sketch_2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_2/.gitignore -------------------------------------------------------------------------------- /animations/carousel_sketch_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_2/README.md -------------------------------------------------------------------------------- /animations/carousel_sketch_2/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_2/karma.conf.js -------------------------------------------------------------------------------- /animations/carousel_sketch_2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_2/package.json -------------------------------------------------------------------------------- /animations/carousel_sketch_2/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /animations/carousel_sketch_2/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /animations/carousel_sketch_2/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /animations/carousel_sketch_2/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_2/src/favicon.ico -------------------------------------------------------------------------------- /animations/carousel_sketch_2/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_2/src/index.html -------------------------------------------------------------------------------- /animations/carousel_sketch_2/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_2/src/main.ts -------------------------------------------------------------------------------- /animations/carousel_sketch_2/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_2/src/styles.css -------------------------------------------------------------------------------- /animations/carousel_sketch_2/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_2/src/test.ts -------------------------------------------------------------------------------- /animations/carousel_sketch_2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_2/tsconfig.json -------------------------------------------------------------------------------- /animations/carousel_sketch_2/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_2/tslint.json -------------------------------------------------------------------------------- /animations/carousel_sketch_3/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_3/.editorconfig -------------------------------------------------------------------------------- /animations/carousel_sketch_3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_3/.gitignore -------------------------------------------------------------------------------- /animations/carousel_sketch_3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_3/LICENSE -------------------------------------------------------------------------------- /animations/carousel_sketch_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_3/README.md -------------------------------------------------------------------------------- /animations/carousel_sketch_3/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_3/e2e/app.po.ts -------------------------------------------------------------------------------- /animations/carousel_sketch_3/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_3/karma.conf.js -------------------------------------------------------------------------------- /animations/carousel_sketch_3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_3/package.json -------------------------------------------------------------------------------- /animations/carousel_sketch_3/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /animations/carousel_sketch_3/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /animations/carousel_sketch_3/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /animations/carousel_sketch_3/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_3/src/favicon.ico -------------------------------------------------------------------------------- /animations/carousel_sketch_3/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_3/src/index.html -------------------------------------------------------------------------------- /animations/carousel_sketch_3/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_3/src/main.ts -------------------------------------------------------------------------------- /animations/carousel_sketch_3/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_3/src/styles.css -------------------------------------------------------------------------------- /animations/carousel_sketch_3/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_3/src/test.ts -------------------------------------------------------------------------------- /animations/carousel_sketch_3/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_3/tsconfig.json -------------------------------------------------------------------------------- /animations/carousel_sketch_3/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/carousel_sketch_3/tslint.json -------------------------------------------------------------------------------- /animations/upside-down/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/.angular-cli.json -------------------------------------------------------------------------------- /animations/upside-down/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/.editorconfig -------------------------------------------------------------------------------- /animations/upside-down/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/.gitignore -------------------------------------------------------------------------------- /animations/upside-down/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/README.md -------------------------------------------------------------------------------- /animations/upside-down/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /animations/upside-down/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/e2e/app.po.ts -------------------------------------------------------------------------------- /animations/upside-down/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /animations/upside-down/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/karma.conf.js -------------------------------------------------------------------------------- /animations/upside-down/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/package.json -------------------------------------------------------------------------------- /animations/upside-down/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/protractor.conf.js -------------------------------------------------------------------------------- /animations/upside-down/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/src/app/app.module.ts -------------------------------------------------------------------------------- /animations/upside-down/src/app/back-side/back-side.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /animations/upside-down/src/app/front-side/front-side.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /animations/upside-down/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /animations/upside-down/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /animations/upside-down/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/src/favicon.ico -------------------------------------------------------------------------------- /animations/upside-down/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/src/index.html -------------------------------------------------------------------------------- /animations/upside-down/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/src/main.ts -------------------------------------------------------------------------------- /animations/upside-down/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/src/polyfills.ts -------------------------------------------------------------------------------- /animations/upside-down/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/src/styles.css -------------------------------------------------------------------------------- /animations/upside-down/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/src/test.ts -------------------------------------------------------------------------------- /animations/upside-down/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/src/tsconfig.app.json -------------------------------------------------------------------------------- /animations/upside-down/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/src/typings.d.ts -------------------------------------------------------------------------------- /animations/upside-down/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/tsconfig.json -------------------------------------------------------------------------------- /animations/upside-down/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/animations/upside-down/tslint.json -------------------------------------------------------------------------------- /asychronous/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/.angular-cli.json -------------------------------------------------------------------------------- /asychronous/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/.editorconfig -------------------------------------------------------------------------------- /asychronous/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/.gitignore -------------------------------------------------------------------------------- /asychronous/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/README.md -------------------------------------------------------------------------------- /asychronous/asychronous.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/asychronous.iml -------------------------------------------------------------------------------- /asychronous/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /asychronous/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/e2e/app.po.ts -------------------------------------------------------------------------------- /asychronous/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /asychronous/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/karma.conf.js -------------------------------------------------------------------------------- /asychronous/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/package.json -------------------------------------------------------------------------------- /asychronous/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/protractor.conf.js -------------------------------------------------------------------------------- /asychronous/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /asychronous/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/src/app/app.component.html -------------------------------------------------------------------------------- /asychronous/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/src/app/app.component.ts -------------------------------------------------------------------------------- /asychronous/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/src/app/app.module.ts -------------------------------------------------------------------------------- /asychronous/src/app/user/address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/src/app/user/address.ts -------------------------------------------------------------------------------- /asychronous/src/app/user/user.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/src/app/user/user.component.css -------------------------------------------------------------------------------- /asychronous/src/app/user/user.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/src/app/user/user.component.html -------------------------------------------------------------------------------- /asychronous/src/app/user/user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/src/app/user/user.component.ts -------------------------------------------------------------------------------- /asychronous/src/app/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/src/app/user/user.service.ts -------------------------------------------------------------------------------- /asychronous/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /asychronous/src/assets/mock/loremipsum.txt: -------------------------------------------------------------------------------- 1 | Lorem ipsum sunt dolorem. 2 | -------------------------------------------------------------------------------- /asychronous/src/assets/mock/user/language/Get.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "spanish" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /asychronous/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /asychronous/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/src/environments/environment.ts -------------------------------------------------------------------------------- /asychronous/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/src/favicon.ico -------------------------------------------------------------------------------- /asychronous/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/src/index.html -------------------------------------------------------------------------------- /asychronous/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/src/main.ts -------------------------------------------------------------------------------- /asychronous/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/src/polyfills.ts -------------------------------------------------------------------------------- /asychronous/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/src/styles.css -------------------------------------------------------------------------------- /asychronous/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/src/test.ts -------------------------------------------------------------------------------- /asychronous/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/src/tsconfig.app.json -------------------------------------------------------------------------------- /asychronous/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/src/tsconfig.spec.json -------------------------------------------------------------------------------- /asychronous/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/src/typings.d.ts -------------------------------------------------------------------------------- /asychronous/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/tsconfig.json -------------------------------------------------------------------------------- /asychronous/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/asychronous/tslint.json -------------------------------------------------------------------------------- /charts/complexCharts/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/.editorconfig -------------------------------------------------------------------------------- /charts/complexCharts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/.gitignore -------------------------------------------------------------------------------- /charts/complexCharts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/README.md -------------------------------------------------------------------------------- /charts/complexCharts/angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/angular-cli.json -------------------------------------------------------------------------------- /charts/complexCharts/charts.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/charts.iml -------------------------------------------------------------------------------- /charts/complexCharts/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /charts/complexCharts/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/e2e/app.po.ts -------------------------------------------------------------------------------- /charts/complexCharts/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/e2e/tsconfig.json -------------------------------------------------------------------------------- /charts/complexCharts/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/karma.conf.js -------------------------------------------------------------------------------- /charts/complexCharts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/package.json -------------------------------------------------------------------------------- /charts/complexCharts/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/protractor.conf.js -------------------------------------------------------------------------------- /charts/complexCharts/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/complexCharts/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/src/app/app.module.ts -------------------------------------------------------------------------------- /charts/complexCharts/src/app/common/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/src/app/common/data.ts -------------------------------------------------------------------------------- /charts/complexCharts/src/app/consumption/consumption.component.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /charts/complexCharts/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /charts/complexCharts/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/src/favicon.ico -------------------------------------------------------------------------------- /charts/complexCharts/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/src/index.html -------------------------------------------------------------------------------- /charts/complexCharts/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/src/main.ts -------------------------------------------------------------------------------- /charts/complexCharts/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/src/polyfills.ts -------------------------------------------------------------------------------- /charts/complexCharts/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/src/styles.css -------------------------------------------------------------------------------- /charts/complexCharts/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/src/test.ts -------------------------------------------------------------------------------- /charts/complexCharts/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/src/tsconfig.json -------------------------------------------------------------------------------- /charts/complexCharts/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/complexCharts/tslint.json -------------------------------------------------------------------------------- /charts/minimalLineChart/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/.editorconfig -------------------------------------------------------------------------------- /charts/minimalLineChart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/.gitignore -------------------------------------------------------------------------------- /charts/minimalLineChart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/README.md -------------------------------------------------------------------------------- /charts/minimalLineChart/angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/angular-cli.json -------------------------------------------------------------------------------- /charts/minimalLineChart/charts.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/charts.iml -------------------------------------------------------------------------------- /charts/minimalLineChart/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /charts/minimalLineChart/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/e2e/app.po.ts -------------------------------------------------------------------------------- /charts/minimalLineChart/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/e2e/tsconfig.json -------------------------------------------------------------------------------- /charts/minimalLineChart/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/karma.conf.js -------------------------------------------------------------------------------- /charts/minimalLineChart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/package.json -------------------------------------------------------------------------------- /charts/minimalLineChart/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/protractor.conf.js -------------------------------------------------------------------------------- /charts/minimalLineChart/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/minimalLineChart/src/app/consumption/consumption.component.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /charts/minimalLineChart/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /charts/minimalLineChart/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/src/favicon.ico -------------------------------------------------------------------------------- /charts/minimalLineChart/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/src/index.html -------------------------------------------------------------------------------- /charts/minimalLineChart/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/src/main.ts -------------------------------------------------------------------------------- /charts/minimalLineChart/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/src/polyfills.ts -------------------------------------------------------------------------------- /charts/minimalLineChart/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/src/styles.css -------------------------------------------------------------------------------- /charts/minimalLineChart/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/src/test.ts -------------------------------------------------------------------------------- /charts/minimalLineChart/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/src/tsconfig.json -------------------------------------------------------------------------------- /charts/minimalLineChart/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/charts/minimalLineChart/tslint.json -------------------------------------------------------------------------------- /datatables/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/.editorconfig -------------------------------------------------------------------------------- /datatables/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/.gitignore -------------------------------------------------------------------------------- /datatables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/README.md -------------------------------------------------------------------------------- /datatables/angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/angular-cli.json -------------------------------------------------------------------------------- /datatables/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /datatables/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/e2e/app.po.ts -------------------------------------------------------------------------------- /datatables/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/e2e/tsconfig.json -------------------------------------------------------------------------------- /datatables/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/karma.conf.js -------------------------------------------------------------------------------- /datatables/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/package.json -------------------------------------------------------------------------------- /datatables/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/protractor.conf.js -------------------------------------------------------------------------------- /datatables/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datatables/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/src/app/app.component.html -------------------------------------------------------------------------------- /datatables/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /datatables/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/src/app/app.component.ts -------------------------------------------------------------------------------- /datatables/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/src/app/app.module.ts -------------------------------------------------------------------------------- /datatables/src/app/datatables/datatables.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datatables/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datatables/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /datatables/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/src/environments/environment.ts -------------------------------------------------------------------------------- /datatables/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/src/favicon.ico -------------------------------------------------------------------------------- /datatables/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/src/index.html -------------------------------------------------------------------------------- /datatables/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/src/main.ts -------------------------------------------------------------------------------- /datatables/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/src/polyfills.ts -------------------------------------------------------------------------------- /datatables/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/src/styles.css -------------------------------------------------------------------------------- /datatables/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/src/test.ts -------------------------------------------------------------------------------- /datatables/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/src/tsconfig.json -------------------------------------------------------------------------------- /datatables/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/datatables/tslint.json -------------------------------------------------------------------------------- /embedding-pdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/embedding-pdf/README.md -------------------------------------------------------------------------------- /minesweeper/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/minesweeper/app.html -------------------------------------------------------------------------------- /minesweeper/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/minesweeper/app.ts -------------------------------------------------------------------------------- /minesweeper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/minesweeper/index.html -------------------------------------------------------------------------------- /minesweeper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/minesweeper/package.json -------------------------------------------------------------------------------- /ng2d3charts/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/.editorconfig -------------------------------------------------------------------------------- /ng2d3charts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/.gitignore -------------------------------------------------------------------------------- /ng2d3charts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/README.md -------------------------------------------------------------------------------- /ng2d3charts/angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/angular-cli.json -------------------------------------------------------------------------------- /ng2d3charts/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /ng2d3charts/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/e2e/app.po.ts -------------------------------------------------------------------------------- /ng2d3charts/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/e2e/tsconfig.json -------------------------------------------------------------------------------- /ng2d3charts/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/karma.conf.js -------------------------------------------------------------------------------- /ng2d3charts/ng2d3charts.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/ng2d3charts.iml -------------------------------------------------------------------------------- /ng2d3charts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/package.json -------------------------------------------------------------------------------- /ng2d3charts/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/protractor.conf.js -------------------------------------------------------------------------------- /ng2d3charts/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ng2d3charts/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/src/app/app.component.html -------------------------------------------------------------------------------- /ng2d3charts/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /ng2d3charts/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/src/app/app.component.ts -------------------------------------------------------------------------------- /ng2d3charts/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/src/app/app.module.ts -------------------------------------------------------------------------------- /ng2d3charts/src/app/d3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/src/app/d3.ts -------------------------------------------------------------------------------- /ng2d3charts/src/app/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/src/app/data.ts -------------------------------------------------------------------------------- /ng2d3charts/src/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/src/app/index.ts -------------------------------------------------------------------------------- /ng2d3charts/src/app/linechart/linechart.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ng2d3charts/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ng2d3charts/src/assets/ng2d3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/src/assets/ng2d3.css -------------------------------------------------------------------------------- /ng2d3charts/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /ng2d3charts/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/src/environments/environment.ts -------------------------------------------------------------------------------- /ng2d3charts/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/src/favicon.ico -------------------------------------------------------------------------------- /ng2d3charts/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/src/index.html -------------------------------------------------------------------------------- /ng2d3charts/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/src/main.ts -------------------------------------------------------------------------------- /ng2d3charts/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/src/polyfills.ts -------------------------------------------------------------------------------- /ng2d3charts/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/src/styles.css -------------------------------------------------------------------------------- /ng2d3charts/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/src/test.ts -------------------------------------------------------------------------------- /ng2d3charts/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/src/tsconfig.json -------------------------------------------------------------------------------- /ng2d3charts/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/src/typings.d.ts -------------------------------------------------------------------------------- /ng2d3charts/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/ng2d3charts/tslint.json -------------------------------------------------------------------------------- /pascals-triangle/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/.editorconfig -------------------------------------------------------------------------------- /pascals-triangle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/.gitignore -------------------------------------------------------------------------------- /pascals-triangle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/README.md -------------------------------------------------------------------------------- /pascals-triangle/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/angular.json -------------------------------------------------------------------------------- /pascals-triangle/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/e2e/protractor.conf.js -------------------------------------------------------------------------------- /pascals-triangle/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /pascals-triangle/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/e2e/src/app.po.ts -------------------------------------------------------------------------------- /pascals-triangle/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /pascals-triangle/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/package-lock.json -------------------------------------------------------------------------------- /pascals-triangle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/package.json -------------------------------------------------------------------------------- /pascals-triangle/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pascals-triangle/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/src/app/app.component.html -------------------------------------------------------------------------------- /pascals-triangle/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/src/app/app.component.ts -------------------------------------------------------------------------------- /pascals-triangle/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/src/app/app.module.ts -------------------------------------------------------------------------------- /pascals-triangle/src/app/state/mobx-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/src/app/state/mobx-state.ts -------------------------------------------------------------------------------- /pascals-triangle/src/app/state/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/src/app/state/state.ts -------------------------------------------------------------------------------- /pascals-triangle/src/app/triangle/triangle.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pascals-triangle/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pascals-triangle/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/src/browserslist -------------------------------------------------------------------------------- /pascals-triangle/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /pascals-triangle/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/src/favicon.ico -------------------------------------------------------------------------------- /pascals-triangle/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/src/index.html -------------------------------------------------------------------------------- /pascals-triangle/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/src/karma.conf.js -------------------------------------------------------------------------------- /pascals-triangle/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/src/main.ts -------------------------------------------------------------------------------- /pascals-triangle/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/src/polyfills.ts -------------------------------------------------------------------------------- /pascals-triangle/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/src/styles.css -------------------------------------------------------------------------------- /pascals-triangle/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/src/test.ts -------------------------------------------------------------------------------- /pascals-triangle/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/src/tsconfig.app.json -------------------------------------------------------------------------------- /pascals-triangle/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/src/tsconfig.spec.json -------------------------------------------------------------------------------- /pascals-triangle/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/src/tslint.json -------------------------------------------------------------------------------- /pascals-triangle/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/tsconfig.json -------------------------------------------------------------------------------- /pascals-triangle/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/pascals-triangle/tslint.json -------------------------------------------------------------------------------- /quickstart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/quickstart/.gitignore -------------------------------------------------------------------------------- /quickstart/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/quickstart/app/app.component.ts -------------------------------------------------------------------------------- /quickstart/app/boot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/quickstart/app/boot.ts -------------------------------------------------------------------------------- /quickstart/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/quickstart/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /quickstart/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/quickstart/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /quickstart/assets/js/jquery-2.2.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/quickstart/assets/js/jquery-2.2.0.min.js -------------------------------------------------------------------------------- /quickstart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/quickstart/index.html -------------------------------------------------------------------------------- /quickstart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/quickstart/package.json -------------------------------------------------------------------------------- /quickstart/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/quickstart/tsconfig.json -------------------------------------------------------------------------------- /treasure/applicationcomponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/treasure/applicationcomponent.html -------------------------------------------------------------------------------- /treasure/applicationcomponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/treasure/applicationcomponent.js -------------------------------------------------------------------------------- /treasure/applicationcomponent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/treasure/applicationcomponent.js.map -------------------------------------------------------------------------------- /treasure/applicationcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/treasure/applicationcomponent.ts -------------------------------------------------------------------------------- /treasure/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/treasure/bootstrap.min.css -------------------------------------------------------------------------------- /treasure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/treasure/index.html -------------------------------------------------------------------------------- /treasure/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/treasure/map.js -------------------------------------------------------------------------------- /treasure/map.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/treasure/map.js.map -------------------------------------------------------------------------------- /treasure/mapcomponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/treasure/mapcomponent.html -------------------------------------------------------------------------------- /treasure/mapcomponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/treasure/mapcomponent.js -------------------------------------------------------------------------------- /treasure/mapcomponent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/treasure/mapcomponent.js.map -------------------------------------------------------------------------------- /treasure/mapcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/treasure/mapcomponent.ts -------------------------------------------------------------------------------- /treasure/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/treasure/package.json -------------------------------------------------------------------------------- /treasure/piechart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/treasure/piechart.css -------------------------------------------------------------------------------- /treasure/piechart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/treasure/piechart.html -------------------------------------------------------------------------------- /treasure/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/ExploringAngular/HEAD/treasure/tsconfig.json --------------------------------------------------------------------------------