Hello World

这几天使用Hexo和Github为自己搭建了一个技术博客,在此记录下职业生涯中关于技术的一些点滴。以前在一些博客网站上写东西都没坚持下来,希望这次可以养成并保持这个良好的习惯。

下面是一些测试:

这个是大标题

这个是小标题

这个是引用。

这是一个普通段落,下边是一些代码片段。

1
2
3
4
5
6
7
import java.util.Scanner;
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello world.");
}
}
1
2
3
4
5
6
#! /usr/bin/env python
import math
for i in range(0, 100):
print "The squared root of %d is %f" % (i, math.sqrt(i))
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<html>
<head>
<title>Test</title>
<style>
body {
backgroundclolor: #FFCC99;
};
.abc {
font-weight: 20pt;
};
</style>
</head>
<body>
<p class="abc">Hello world.</p>
<form action="ok.php" method="post">
<input type="text" name="number"/>
<input type="submit" value="提交"/>
</form>
<button id="xyz" vlaue="js test"/>
<script type="text/javascript">
$(function(){
$("#xyz").click(function(){
$(this).hide();
});
});
</script>
<?php echo "PHP TEST"; ?>
</body>
</html>
1
2
3
#! /bin/bash
ls -l | grep "root" | awk '{ print $1 }'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _HEADER_H_
#define _HEADER_H_
#include <iostream>
using namespace std;
static int sint;
string m = "This is a string.";
template <typename T>
class Print {
public:
Print(T x) { cout << x; }
};
#endif
int main(int argc, char *argv[])
{
Print<int> a(8);
Print<std::string> b("foo");
}

测试结束。