Skip to content

Instantly share code, notes, and snippets.

View liconrepo's full-sized avatar
:octocat:
git me

Khairul Alam liconrepo

:octocat:
git me
View GitHub Profile
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,
@liconrepo
liconrepo / website index.html
Created August 24, 2017 09:26
This is sample html code for the very beginners.
<!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;
@liconrepo
liconrepo / 0_reuse_code.js
Created November 5, 2015 18:08
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@liconrepo
liconrepo / README.md
Created October 26, 2015 11:20 — forked from hofmannsven/README.md
My simply Git Cheatsheet
@liconrepo
liconrepo / Git flow
Created October 6, 2015 09:46 — forked from oVuXuanDung/Git flow
Git flow
※ 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
@liconrepo
liconrepo / Android Studio .gitignore
Last active September 8, 2015 02:04 — forked from iainconnor/Android Studio .gitignore
A .gitignore for use in Android Studio
# Built application files
/*/build/
# Crashlytics configuations
com_crashlytics_export_strings.xml
# Local configuration file (sdk path, etc)
local.properties
# Gradle generated files
@liconrepo
liconrepo / ruby_monk_primer.rb
Last active August 29, 2015 14:28 — forked from brownmike/ruby_monk_primer.rb
Ruby Monk Primer My solutions to all problems in ascending order
# 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