A simple plunker demonstrating Angular2 usage:
- Uses SystemJS + TypeScript to compile on the fly
- Includes binding, directives, http, pipes, and DI usage.
For opening
https://github.com/asciinema/asciinema/blob/master/doc/asciicast-v1.md
"Automatically log session input to files in:"
| # This is a sample build configuration for Javascript. | |
| # Check our guides at https://confluence.atlassian.com/x/VYk8Lw for more examples. | |
| # Only use spaces to indent your .yml configuration. | |
| # ----- | |
| # You can specify a custom docker image from Docker Hub as your build environment. | |
| image: node:6 | |
| pipelines: | |
| default: | |
| - step: | |
| script: |
| # | |
| # This is the default config file. It allows all users to do anything, | |
| # so don't use it on production systems. | |
| # | |
| # Look here for more config file examples: | |
| # https://github.com/rlidwka/sinopia/tree/master/conf | |
| # | |
| # path to a directory with all packages | |
| storage: /verdaccio/storage |
| { | |
| "//": [ | |
| "@angular/* should be 2.2.1, not 2.2.3(latest at that time) caused by @ngtools/[email protected] > [email protected] (#3295)", | |
| "zone.js should be ^0.6.23, not ^0.7.2(latest at that time) caused by @angular/[email protected] (#13022)", | |
| "tslint should be ^3.15.1, not ^4.0.2(latest at that time) caused by [email protected] > [email protected] (#3304)", | |
| ], | |
| "dependencies": { | |
| "@angular/common": "2.2.1", | |
| "@angular/compiler": "2.2.1", | |
| "@angular/core": "2.2.1", |
μ΄ κΈμ μμ±νλ μμ (2017-01-11)μμ λΆμ° ν μνλ‘μ°μ κ΄λ ¨ μλ£ λΆμ‘±μΌλ‘ νμ€ν λΆμ° νμ΅μ΄ λλμ§ νμΈμ΄ λμ§ μμμ΅λλ€. μνκΉμ§λ§ λ³Έ λ΄μ©μ μ°Έκ³ λ§ νμκΈ° λ°λλλ€.
μλ¬Έ [https://www.tensorflow.org/how_tos/distributed/] (https://www.tensorflow.org/how_tos/distributed/)
| brew install openssl | |
| export OPENSSL_INCLUDE_DIR=`brew --prefix openssl`/include | |
| export OPENSSL_LIB_DIR=`brew --prefix openssl`/lib | |
| export DEP_OPENSSL_INCLUDE=`brew --prefix openssl`/include |
| pip freeze | xargs pip uninstall -y |
| // clang -cc1 -analyzer-checker-help | |
| // OVERVIEW: Clang Static Analyzer Checkers List | |
| // USAGE: -analyzer-checker <CHECKER or PACKAGE,...> | |
| // | |
| // CHECKERS: | |
| // alpha.core.BoolAssignment Warn about assigning non-{0,1} values to Boolean variables | |
| // alpha.core.CallAndMessageUnInitRefArg | |
| // Check for logical errors for function calls and Objective-C message expressions (e.g., uninitialized arguments, null function pointers, and pointer to undefined variables) | |
| // alpha.core.CastSize Check when casting a malloc'ed type T, whether the size is a multiple of the size of T | |
| // alpha.core.CastToStruct Check for cast from non-struct pointer to struct pointer |