Skip to content

Instantly share code, notes, and snippets.

View RileyKim's full-sized avatar

TaeksuKim RileyKim

View GitHub Profile
@RileyKim
RileyKim / sitemap.xml
Created September 2, 2019 07:49
sitemap
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for post in site.posts %}
<url>
<loc>{{ site.url }}{{ post.url }}</loc>
{% if post.lastmod == null %}
<lastmod>{{ post.date | date_to_xmlschema }}</lastmod>
@RileyKim
RileyKim / robot.txt
Created September 2, 2019 07:55
robot.txt
User-agent:*
Allow:/
Sitemap:https://rileykim.github.io/sitemap.xml
@RileyKim
RileyKim / print.txt
Created September 3, 2019 05:24
print
print("hello world")
git branch <branchName>
@RileyKim
RileyKim / makeBranch
Created October 10, 2019 06:08
make branch
git branch <branchName>
@RileyKim
RileyKim / CheckBranchList
Created October 10, 2019 06:14
Check Branch List
git branch
@RileyKim
RileyKim / ChangeBranch
Created October 10, 2019 07:15
ChangeBranch
git checkout <BranchName>
@RileyKim
RileyKim / GitCommitPush
Created October 10, 2019 07:54
GitCommitPush
git add --all // 완료된 모든 작업을 add합니다
git commit -m "add내용" // commit과 다른 작업자가 무엇을 commit하는 지 알 수 있게 메시지를 추가합니다.
git push -u origin ba // ba라는 작업자가 완료된 작업을 푸쉬하여 master에게 merge를 요청합니다.
@RileyKim
RileyKim / View_todo.html
Created November 25, 2019 08:09
View_todo.html
<!DOCTYPE html>
<html data-ng-app>
<head>
<title>To Do List</title>
<link href="bootstrap.css" rel="stylesheet">
<link href="bootstrap-theme.css" rel="stylesheet">
<script src="angular.js"></script>
<script>
var model = {
user : "Adam",
<!DOCTYPE html>
<html data-ng-app>
<head>
<title>To Do List</title>
<link href="bootstrap.css" rel="stylesheet">
<link href="bootstrap-theme.css" rel="stylesheet">
<script src="angular.js"></script>
<script>
var model = {
user : "Adam",