-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo-start.html
More file actions
executable file
·86 lines (76 loc) · 4.38 KB
/
go-start.html
File metadata and controls
executable file
·86 lines (76 loc) · 4.38 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="ru">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>runningmaster's githublog : Альтернатива Django|Rails на Go</title>
<link rel="stylesheet" href="./src/dsgn.css" type="text/css" media="screen, projection" />
<link href="http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic" rel="stylesheet" />
<link href="http://fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic" rel="stylesheet" />
<link href="/img/favicon.png" rel="icon" />
<link rel="alternate" title="runningmaster's githublog" href="/feed.xml" type="application/atom+xml">
<!--
<link rel="stylesheet" type="text/css" href="/css/highlight.css" />
-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-31528830-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<a href="http://runningmaster.github.com/" title="Home" id="img_logo"></a>
<a href="http://github.com/runningmaster/" title="Fork me on GitHub" id="img_fork"></a>
<a href="/feed.xml" title="Feed" id="img_feed"></a>
<a href="mailto:runningmaster@gmail.com" title="Mail" id="img_mail"></a>
<div class="site">
<div class="menu">
<a href=".">home</a> |
<a href="./about.html">about</a>
</div>
<div id="home">
<div class="title">
2012-05-09
</div>
<h1>Альтернатива Django|Rails на Go</h1>
<div id="post">
<p>Намедни открыл для себя один занимательный проект - высокоуровневый веб-фреймворк <a href="https://github.com/ungerik/go-start">Go-start</a>, который позиционируется как аналог <a href="http://ru.wikipedia.org/wiki/Django">Django для Python</a> или <a href="http://ru.wikipedia.org/wiki/Ruby_on_Rails">Rails для Ruby</a>, но только написан на <a href="http://golang.org/">Go</a> и имеет в некоторой степени отличную от первых <a href="https://github.com/ungerik/go-start/blob/master/README.md">философию</a>.</p>
<p>Фреймворк имеет спонсора и <strong>очень активно развивается</strong>, разгоняя ветер перемен базой данных <a href="http://ru.wikipedia.org/wiki/MongoDB">MongoDB</a>, которая используется по умолчанию.</p>
<ul>
<li><a href="http://startuplive.in/">Вот</a> пример сделанного сайта на посмотреть.</li>
<li><a href="http://speakerdeck.com/u/ungerik/p/the-go-start-webframework">Вот</a> слайды презентации.</li>
<li><a href="http://vimeo.com/39348998">Вот</a> видео презентации.</li>
</ul>
</div>
<h1>Комментарии</h1>
<div id="disqus_thread"></div>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = 'runningmastersgithublog';
var disqus_developer = 0;
var disqus_identifier = 'go-start';
var disqus_url = 'http://runningmaster.github.com/go-start.html';
var disqus_script = 'embed.js';
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/' + disqus_script;
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<div class="post_footer">
<a href="http://disqus.com">Powered by Disqus</a>
</div>
<div class="footer">
<div class="contact">
© 2013
<a href="mailto:runningmaster@gmail.com" title="Написать письмо">Dmitriy Kovalenko</a> | <a href="/feed.xml" rel="subscribe-rss" title="Подписаться через RSS">RSS</a> | <a href="http://github.com/runningmaster/runningmaster.github.com/blob/master/src/main.go" title="Посмотреть код">Made on Go</a>
</div>
</div>
</div>
</div>
</body>
</html>