Skip to content

Commit 38a00e1

Browse files
committed
a few improvements
1 parent 3b7f82f commit 38a00e1

8 files changed

+30
-23
lines changed

_posts/2011-04-27-programming-languages-worth-learning.markdown

+3-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ Jython - just to name a few) Java is still predominant by a wide
6262
margin and this is unlikely to change soon.
6363

6464
I've taught a couple of introductory Java programming courses(in
65-
Bulgarian), but I'd recommend the ["Core Java"](http://www.amazon.com/Core-Java-TM-I--Fundamentals-8th/dp/0132354764/ref=sr_1_1?s=books&ie=UTF8&qid=1303901341&sr=1-1) over my lectures any day of
65+
Bulgarian), but I'd recommend the
66+
["Core Java"](http://www.amazon.com/Core-Java-TM-I--Fundamentals-8th/dp/0132354764/ref=sr_1_1?s=books&ie=UTF8&qid=1303901341&sr=1-1)
67+
book over my lectures any day of
6668
the week. :-)
6769
#Haskell
6870
---

_site/atom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title>www.batsov.com</title>
55
<link href="http://www.batsov.com/"/>
66
<link type="application/atom+xml" rel="self" href="http://www.batsov.com/atom.xml"/>
7-
<updated>2011-04-27T20:10:19+03:00</updated>
7+
<updated>2011-04-27T23:47:22+03:00</updated>
88
<id>http://www.batsov.com/</id>
99
<author>
1010
<name>Bozhidar Batsov</name>

_site/contacts.html

+13-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,19 @@ <h1>(think)</h1>
3939
</ul>
4040
</div>
4141
<div id="content">
42-
<p>E-mail: [email protected]</p>
42+
<ul>
43+
<li>
44+
<p>E-mail: <a href='mailto:[email protected]'>&#098;&#111;&#122;&#104;&#105;&#100;&#097;&#114;&#046;&#098;&#097;&#116;&#115;&#111;&#118;&#064;&#103;&#109;&#097;&#105;&#108;&#046;&#099;&#111;&#109;</a></p>
45+
</li>
46+
47+
<li>
48+
<p>GTalk: [email protected]</p>
49+
</li>
50+
51+
<li>
52+
<p>Skype: bozhidar_</p>
53+
</li>
54+
</ul>
4355
</div>
4456
</div>
4557
<div id="footer">

_site/index.html

+5-15
Large diffs are not rendered by default.

_site/lisp-problems.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ <h2 id='lisp_lists'>Lisp Lists</h2>
6464
<p><a href='https://github.com/bbatsov/cl-99-problems/blob/master/p102.lisp'>View solution</a></p>
6565

6666
<p><em>1.03 (*) Find the nth element of a list.</em> The first element in the list is number 0.</p>
67-
<div class='highlight'><pre><code class='cl'><span class='nv'>CL-USER&gt;</span> <span class='p'>(</span><span class='nb'>nth</span> <span class='o'>&#39;</span><span class='p'>(</span><span class='mi'>1</span> <span class='mi'>2</span> <span class='mi'>3</span><span class='p'>)</span> <span class='mi'>1</span><span class='p'>)</span>
67+
<div class='highlight'><pre><code class='cl'><span class='nv'>CL-USER&gt;</span> <span class='p'>(</span><span class='nv'>my-nth</span> <span class='o'>&#39;</span><span class='p'>(</span><span class='mi'>1</span> <span class='mi'>2</span> <span class='mi'>3</span><span class='p'>)</span> <span class='mi'>1</span><span class='p'>)</span>
6868
<span class='mi'>2</span>
6969
</code></pre>
7070
</div>

contacts.markdown

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
layout: default
3-
title: Contacts
3+
title: "Contacts"
44
---
5+
* E-mail: <[email protected]>
56

6-
7+
8+
9+
* Skype: bozhidar\_

index.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: Blogs posts
66
{% for post in site.posts limit:5 %}
77
## [{{ post.title }}]({{ post.url }})
88
{{ post.content }}
9-
_Posted on {{ post.date | date_to_long_string }}._
9+
<div style="font-style: italic; color: #7f9f7f;">Posted on {{ post.date | date_to_string }} by Bozhidar.</div>
1010

1111
[Comments]({{ post.url }}#disqus_thread)
1212
{% endfor %}

lisp-problems.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ CL-USER> (penultimate '(1 2 3))
5050
The first element in the list is number 0.
5151

5252
{% highlight cl %}
53-
CL-USER> (nth '(1 2 3) 1)
53+
CL-USER> (my-nth '(1 2 3) 1)
5454
2
5555
{% endhighlight %}
5656
[View solution](https://github.com/bbatsov/cl-99-problems/blob/master/p103.lisp)

0 commit comments

Comments
 (0)