Skip to content

Instantly share code, notes, and snippets.

View goodGid's full-sized avatar
😎

Kiyong Shin goodGid

😎
View GitHub Profile
@goodGid
goodGid / feed.xml
Created August 25, 2018 15:46
feed.xml
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ site.title | xml_escape }}</title>
<description>{{ site.description | xml_escape }}</description>
<link>{{ site.url }}{{ site.baseurl }}/</link>
<atom:link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml"/>
@goodGid
goodGid / sitemap.xml
Created August 25, 2018 15:45
sitemap.xml
---
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>
## 01 블록체인 네트워크 설치
1. 루트 권한 접속
A. sudo su
2. 소스코드의 빌드를 위해 Go언어와 C컴파일러를 설치한다.
A. apt-get install -y build-essential libgmp3-dev golang git tree
@goodGid
goodGid / [1] 개발 환경 설정 방법.txt
Last active January 22, 2019 09:19
Ethereum education
## 빌드 환경 구성 및 빌드
1. Git 설치
A. sudo apt-get install git
2. 우분투 환경 업데이트
A. sudo apt-get update
3. 빌드 필수 구성요소 설치
A. sudo apt-get install build-essential