Skip to content

Commit 1fd7a7d

Browse files
author
aeoth
committed
added post thanking jetbrains
more mobile tweaks
1 parent 10f6dd0 commit 1fd7a7d

File tree

11 files changed

+47
-10
lines changed

11 files changed

+47
-10
lines changed

_includes/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div id="sponsors">
1313
<h3>sponsors</h3>
1414
<div style="position:relative; display:inline-block; background:#fff url(http://www.jetbrains.com/resharper/features/rs/rs1/rs210x60_white.gif) no-repeat 0 0; border:solid 1px #7d255b; margin:0;padding:0;text-decoration:none;text-indent:0;letter-spacing:-0.001em; width:208px; height:58px"><span style="margin: -1px 0 0 63px;padding: 0;float: left;font-size: 10px;cursor:pointer; background-image:none;border:0;color: #7d255b; font-family: trebuchet ms,arial,sans-serif;font-weight: normal;">Can't live without</span><a href="http://www.jetbrains.com/resharper/features/code_refactoring.html" alt="The best C# &amp; VB.NET refactoring plugin for Visual Studio" title="The best C# & VB.NET refactoring plugin for Visual Studio" style="position:absolute;left:0;margin:0;padding:34px 0 2px 8px;width:200px; line-height:11px;font-size:9px;cursor:pointer; background-image:none;border:none;display:block; color:#7d255b; font-family:tahoma,arial,sans-serif;font-weight: normal;text-decoration:none;">The best C# &amp; VB.NET refactoring plugin for Visual Studio</a></div>
15-
<img src="/img/logo_teamcity.png" />
15+
<a href="http://www.jetbrains.com/teamcity/"><img src="/img/logo_teamcity.png" /></a>
1616
</div>
1717
</div>
1818
</div>

_includes/goals.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
<div class="pivot-item">
22
<h3>goals</h3>
3+
Particular goals we want to achieve:
4+
5+
<ul>
6+
<li>introduce developers to open-source projects and help them learn the ropes</li>
7+
<li>contribute to projects across a range of technologies</li>
8+
<li>let the community determine where to focus efforts (?)</li>
9+
</ul>
310
</div>

_layouts/layout.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<div id="hometext"><a href="/" >code52</a></div>
2121
<div class="section">
2222
<ul>
23+
<li><a href="/blog.html">blog</a></li>
2324
<li><a href="/about.html">about</a></li>
2425
<li><a href="http://twitter.com/code_52">@code_52</a></li>
2526
<li><a href="http://jabbr.net/#/rooms/code52">chatroom</a></li>

_posts/2012-02-07-jetbrains.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
layout: post
3+
title: Big thanks to Jetbrains!
4+
date: 2012-02-08
5+
---
6+
7+
[![](/img/logo_resharper.png)](http://www.jetbrains.com/resharper/)
8+
9+
Big thanks to Jetbrains, who have come to the table and given us ringleaders a license for Resharper. While there is the eternal debate whether those using R# can program without it, for a project this size it's hard to function without it. Often we simply don't have time to go over everything while merging, and the highlighting of unreachable or broken code that R# provides alone is worth it. That's not even getting to the refactoring capabilities!
10+
11+
[![](/img/logo_teamcity.png)](http://www.jetbrains.com/teamcity/)
12+
13+
They've also granted us an open source license for Team City, which is operating on my home server, accessible via [ci.code52.org](http://ci.code52.org/). This will end up running and building all Code52 projects!
14+
15+
###Why is continuous integration important?
16+
With CI (continuous integration), every time somebody commits/merges into one of the master branches, the project is built. If it has tests, the test are run. We know immediately when and who broke the build, and we get to test it in an environment outside the "developer" environment.
17+
18+
If it's worth doing more that once, automate the heck out of it.
19+
20+
I already had the free ["Professional"](http://www.jetbrains.com/teamcity/buy/index.jsp) version installed for all my personal projects - it's the first (very important) step to making sure your applications don't just have a "works on this machine" badge.

about.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ layout: post
33
title: About
44
comments: false
55
---
6-
76
code52 started with a simple idea:
87

98
##"A new coding project every week"

blog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ title : code52
4343
<ul class="postArchive">
4444
{% for post in site.posts offset:1 %}
4545
<li>
46-
<span class="olderpostdate"> {{ post.date | date: "%d %b" }} </span> <a class="postlink" href="{{ post.id }}">{{ post.title }}</a>
46+
<span class="olderpostdate"> {{ post.date | date: "%d %b" }} </span> <a class="postlink" href="{{ post.url }}">{{ post.title }}</a>
4747
</li>
4848
{% endfor %}
4949
</ul>

css/base.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626

2727
margin-top:25px;
2828
}
29+
#sponsors a:hover { background:none;}
2930
#sponsors h3 { margin-bottom:15px; }
3031

3132

@@ -56,3 +57,9 @@ a:hover
5657
color:white;
5758
background: #13678b
5859
}
60+
61+
@media screen and (max-width:900px)
62+
{
63+
h1 { font-size: 2.5em;}
64+
h2 { font-size:1.5em; }
65+
}

css/landing.css

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -126,18 +126,20 @@ h2 { margin-left:20px; }
126126
}
127127

128128
.Tile h2 { color:white; font-size: 1.75em; margin-top:-10px; margin-left:0px;}
129+
#sponsors {
130+
131+
margin-top:25px;
132+
}
133+
#sponsors h3 { margin-bottom:15px; }
129134

130135
@media screen and (max-width:800px)
131136
{
132137
h1 {font-size: 2em;}
133138
h2 {font-size: 1.5em;}
134139
h3 {font-size: 1.25em;}
135140
.metro-pivot .pivot-item h3, .metro-pivot .headers .header { font-size: 125%; display:block; }
141+
.metro-pivot .pivot-item h3, .metro-pivot .headers {clear:both; margin-bottom:60px; }
136142
ul,li { margin-left:0px; padding:0px;}
143+
#container { margin:5px; }
137144
}
138145

139-
#sponsors {
140-
141-
margin-top:25px;
142-
}
143-
#sponsors h3 { margin-bottom:15px; }

css/style20120128.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ img
103103
/* min-device-width: 800px instead? */
104104
@media screen and (max-width:900px)
105105
{
106-
body { width:auto; margin:10px; }
106+
body { width:auto; }
107107
#content { width : 100%; }
108108
#side { float:none; width:100%; margin-left:0px; }
109109
#side .section { margin-top:0; margin-right: 30px; }
@@ -113,6 +113,7 @@ img
113113
#hometext a { display: inline; }
114114
h1 { margin-top: -0px;}
115115
.latest { margin-right:0px; border-top: 1px solid #13678B; margin-top: -20px; margin-bottom: 20px; }
116+
#container, .footer { width:auto; padding:10px; }
116117
}
117118

118119
#suggest { color: orange; }

img/logo_resharper.png

11.1 KB
Loading

0 commit comments

Comments
 (0)