I hereby claim:
- I am diegonakamashi on github.
- I am diegonakamashi (https://keybase.io/diegonakamashi) on keybase.
- I have a public key ASAGR5VVXuOFO41yQtyJtYhwTYrfUi-SSuAQUJLjdUOsYAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| "locator": { | |
| "loc": "123Q", | |
| "username": "Vizir", | |
| "tickets": [ | |
| { | |
| "passenger": { | |
| "name": "MR. Pax1" | |
| }, | |
| "payment": { | |
| "type": "credit_card" |
| { | |
| loc: '123Q', | |
| tickets: [ | |
| { | |
| passenger: { | |
| name: 'Diego Nakamashi' | |
| }, | |
| payment: { |
| <html ng-app='AngularIntro'> | |
| <head> | |
| <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script> | |
| </head> | |
| <body ng-controller='SimpleController'> | |
| <input type='text' ng-model='name'> | |
| <input type='button' value='Adicionar' ng-click='addName()'> | |
| <table> |
| <html ng-app='AngularIntro'> | |
| <head> | |
| <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script> | |
| </head> | |
| <body ng-controller='SimpleController'> | |
| <input type='text' ng-model='name'> | |
| <input type='button' value='Adicionar' ng-click='addName()'> | |
| <table> |
| <html ng-app> | |
| <head> | |
| <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script> | |
| </head> | |
| <body ng-controller='SimpleController'> | |
| <input type='text' ng-model='name'> | |
| <input type='button' ng-click='addName()'> | |
| <table> |
| <html ng-app> | |
| <head> | |
| <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script> | |
| </head> | |
| <body> | |
| <table ng-controller='SimpleController'> | |
| <tr ng-repeat="pessoa in bairroDoLimoeiro"> | |
| <td>{{pessoa}}</td> | |
| </tr> | |
| </table> |
| <html ng-app> | |
| <head> | |
| <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script> | |
| </head> | |
| <body ng-init="bairroDoLimoeiro=['Mônica', 'Magali', 'Cascão', 'Cebolinha']"> | |
| <table> | |
| <tr ng-repeat="pessoa in bairroDoLimoeiro"> | |
| <td>{{pessoa}}</td> | |
| </tr> | |
| </table> |
| <html ng-app> | |
| <head> | |
| <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script> | |
| </head> | |
| <body> | |
| <input ng-model='nome'><span>{{nome}}</span> | |
| </body> | |
| </html> |