Visit my blog or connect with me on Twitter
git init
or
| Copyright 2015-2020 Khairul Alam Licon | |
| Licensed under the Apache License, Version 2.0 (the "License"); | |
| you may not use this file except in compliance with the License. | |
| You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| Unless required by applicable law or agreed to in writing, software | |
| distributed under the License is distributed on an "AS IS" BASIS, | 
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <!-- your webpage info goes here --> | |
| <title>My First Website</title> | |
| <meta name="author" content="your name" /> | |
| <meta name="description" content="" /> | 
| liconrepo Terms of Service and Privacy Policy | |
| 1. Terms | |
| By accessing the website at http://liconrepo.github.io, you are agreeing to be bound by these terms of service, all applicable laws and regulations, and agree that you are responsible for compliance with any applicable local laws. If you do not agree with any of these terms, you are prohibited from using or accessing this site. The materials contained in this website are protected by applicable copyright and trademark law. | |
| 2. Use License | |
| Permission is granted to temporarily download one copy of the materials (information or software) on liconrepo's website for personal, non-commercial transitory viewing only. This is the grant of a license, not a transfer of title, and under this license you may not: | |
| modify or copy the materials; | 
Visit my blog or connect with me on Twitter
git init
or
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console | 
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
| ※ replace vuxuandung by your account name | |
| ■Prepare | |
| 1) Fork repository to your own github account | |
| https://github.com/framgia/project_name/fork | |
| ↓ | |
| https://github.com/vuxuandung/project_name | |
| 2) Clone repository to your development enviroment | 
| # Built application files | |
| /*/build/ | |
| # Crashlytics configuations | |
| com_crashlytics_export_strings.xml | |
| # Local configuration file (sdk path, etc) | |
| local.properties | |
| # Gradle generated files | 
| # Problem Statement | |
| # Create a class Calculator, which performs addition and subtraction of two numbers at a time. | |
| class Calculator | |
| def add(a, b) | |
| a+b | |
| end | |
| def subtract(a, b) | |
| a-b | |
| end |