Follow documentation here.
Make sure you can run docker by running:
docker run hello-world
Follow documentation here.
Make sure you can run docker by running:
docker run hello-world
| { | |
| infoContactCreatedBy: 'Tạo bởi {{name}}', | |
| infoContactUrl: 'Xem thêm tại', | |
| infoContactEmail: 'Liên hệ nhà phát triển', | |
| infoLicense: 'Giấy phép: ', | |
| infoBaseUrl: 'BASE URL', | |
| infoApiVersion: 'API VERSION', | |
| infoHost: 'HOST', | |
| endPointToggleOperations: 'Ẩn/Hiện', | |
| endPointListOperations: 'Danh sách các thao tác', |
| // Bad | |
| .factory('sendEmail', function() { | |
| return function () {....}; | |
| }) | |
| // mock ??? | |
| // Good | |
| .factory('emailService', function() { |
| // wrapper for our game "classes", "methods" and "objects" | |
| window.Game = {}; | |
| // wrapper for "class" Rectangle | |
| (function(){ | |
| function Rectangle(left, top, width, height){ | |
| this.left = left || 0; | |
| this.top = top || 0; | |
| this.width = width || 0; | |
| this.height = height || 0; |
If you encounter the following:
GitHub rate limit reached. To increase the limit use GitHub authentication.
Run jspm endpoint config github to set this up.
Sources :
| --- <unnamed> | |
| +++ <unnamed> | |
| @@ -8,8 +8,9 @@ | |
| var Client = require('heroandtn3/agario-client'); | |
| var EventEmitter = require('events').EventEmitter; | |
| var Misc = require('./misc'); | |
| -var Connector = require('./connector'); | |
| var constants = require('./constants'); | |
| +var servers = require('./servers.js'); | |
| +var Buffer = require('buffer/').Buffer; |
| #!/usr/bin/env python | |
| import re | |
| import sys | |
| patterns = { | |
| '[àáảãạăắằẵặẳâầấậẫẩ]': 'a', | |
| '[đ]': 'd', | |
| '[èéẻẽẹêềếểễệ]': 'e', | |
| '[ìíỉĩị]': 'i', | |
| '[òóỏõọôồốổỗộơờớởỡợ]': 'o', |
| <!-- Snow effect --> | |
| <script type="text/javascript"> | |
| // Set the number of snowflakes (more than 30 - 40 not recommended) | |
| var snowmax=15; | |
| // Set the colors for the snow. Add as many colors as you like | |
| var snowcolor=new Array("#aaaacc","#ddddff","#ccccdd","#f3f3f3","#f0ffff"); | |
| // Set the fonts, that create the snowflakes. Add as many fonts as you like | |
| var snowtype=new Array("Times","Arial","Times","Verdana"); |
| /* | |
| * Copyright 2013 heroandtn3 (heroandtn3 [at] gmail.com) | |
| * | |
| * This file is part of quizgame. | |
| * quizgame is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation, either version 3 of the License, or | |
| * (at your option) any later version. | |
| * quizgame is distributed in the hope that it will be useful, |