diff --git a/about.html b/about.html
new file mode 100644
index 0000000..d773f5a
--- /dev/null
+++ b/about.html
@@ -0,0 +1,8 @@
+
Pengzhan Hao
+Master Student of Binghamton University, SUNY
+Working on OS/Cloud
+Interested in ML/Geo Computing
+Experience
+20132014 20132014 2016~
+Blog
+Mil años de solitario
diff --git a/blog.html b/blog.html
new file mode 100644
index 0000000..22f9719
--- /dev/null
+++ b/blog.html
@@ -0,0 +1 @@
+->Mil años de solitario<- ->INDEX<-
diff --git a/draft/about.md b/draft/about.md
new file mode 100644
index 0000000..4f00568
--- /dev/null
+++ b/draft/about.md
@@ -0,0 +1,13 @@
+#### Pengzhan Hao
+#### Master Student of Binghamton University, SUNY
+#### Working on OS/Cloud
+#### Interested in ML/Geo Computing
+
+#### Experience
+2013~2014
+2013~2014
+2016~
+
+#### Blog
+[Mil años de solitario](./blog.html)
+
diff --git a/draft/blog.md b/draft/blog.md
new file mode 100644
index 0000000..ef6c7df
--- /dev/null
+++ b/draft/blog.md
@@ -0,0 +1,2 @@
+->Mil años de solitario<-
+->INDEX<-
diff --git a/index.html b/index.html
index 6a82bca..1df239c 100644
--- a/index.html
+++ b/index.html
@@ -1,23 +1,6 @@
-
-
-
-
-
-
- Coder Sherlock's Website
-
-
-
+Coder Sherlock's Website
+
diff --git a/tools/.tool.sh.swp b/tools/.tool.sh.swp
new file mode 100644
index 0000000..4e6be39
Binary files /dev/null and b/tools/.tool.sh.swp differ
diff --git a/tools/tool.py b/tools/tool.py
new file mode 100755
index 0000000..1c313ab
--- /dev/null
+++ b/tools/tool.py
@@ -0,0 +1,20 @@
+#!/usr/bin/python
+
+import argparse
+import os
+
+
+
+
+
+
+def main():
+ parser = argparse.ArgumentParser()
+ parser.add_argument("op")
+ parser.add_argument("type")
+ res = parser.parse_args()
+ print(res)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/tools/tool.sh b/tools/tool.sh
new file mode 100755
index 0000000..40622d4
--- /dev/null
+++ b/tools/tool.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+
+TARGET="../draft"
+#DRAFTS=$(ls -l $TARGET| awk '!/index/ {print $9}')
+DRAFTS=$(ls -l $TARGET| awk '{print $9}')
+
+for DRAFT in $DRAFTS
+do
+ pandoc $TARGET/$DRAFT -o ../$(echo $DRAFT| cut -d'.' -f1).html
+done