-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatom.xml
More file actions
128 lines (92 loc) · 5.53 KB
/
atom.xml
File metadata and controls
128 lines (92 loc) · 5.53 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title><![CDATA[Smartdict]]></title>
<link href="http://smartdict.github.com/atom.xml" rel="self"/>
<link href="http://smartdict.github.com/"/>
<updated>2012-06-16T01:55:07+03:00</updated>
<id>http://smartdict.github.com/</id>
<author>
<name><![CDATA[Sergey Potapov]]></name>
</author>
<generator uri="http://octopress.org/">Octopress</generator>
<entry>
<title type="html"><![CDATA[Smartdict 0.1.0 is released]]></title>
<link href="http://smartdict.github.com/blog/2012/06/11/smartdict-0-dot-1-0-is-released/"/>
<updated>2012-06-11T02:30:00+03:00</updated>
<id>http://smartdict.github.com/blog/2012/06/11/smartdict-0-dot-1-0-is-released</id>
<content type="html"><![CDATA[<p>I’m glad to announce Smartdict version 0.1.0 is released!
There are number of improvements:</p>
<ul>
<li>Automatic language detection based on alphabetic. (E.g. you are using
English-Russian translation, it detects either Russian or English word is written)</li>
<li><a href="http://lingvo.yandex.ru/ruby/%D1%81%20%D0%B0%D0%BD%D0%B3%D0%BB%D0%B8%D0%B9%D1%81%D0%BA%D0%BE%D0%B3%D0%BE/">LingvoYandex driver</a>
for English-Russian translations. You can configure drivers in file <code>~/.smartdict/configuration.yml</code> in <code>drivers</code> section.</li>
<li>Fixed number of GUI bugs.</li>
</ul>
<h2>Installation</h2>
<figure class='code'><figcaption><span></span></figcaption><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class='bash'><span class='line'>gem install smartdict
</span></code></pre></td></tr></table></div></figure>
<h2>Backward compatibility note</h2>
<p>The DB schema was changed. If you’ve used Smartdict before please
remove <code>~/.smartdict</code> directory to make it regenerate DB schema
and configuration file.</p>
<h2>Screenshots</h2>
<h3>Smartdict GUI</h3>
<p>To run the application use <code>smartdict-gtk</code> command.
<img src="http://i1078.photobucket.com/albums/w484/greyblake/-Smartdict.png" alt="Smartdict" /></p>
<h3>Smartdict CLI</h3>
<p>To use command line version it’s enough to have <code>smartdict-core</code> gem installed.
<img src="http://i1078.photobucket.com/albums/w484/greyblake/smartdict-cli-010.png" alt="Smartdict" /></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Smartdict introdution]]></title>
<link href="http://smartdict.github.com/blog/2012/06/03/smartdict-introdution/"/>
<updated>2012-06-03T22:14:00+03:00</updated>
<id>http://smartdict.github.com/blog/2012/06/03/smartdict-introdution</id>
<content type="html"><![CDATA[<p>Hello everyone. My name is <a href="http://github.com/greyblake">Sergey Potapov</a>, I am a
ruby developer and the creator/maintainer of Smartdict dictionary. In this post
I’m gonna tell you about the intention of Smartdict project and its main goals.</p>
<h2>History</h2>
<p>I live in <a href="http://en.wikipedia.org/wiki/Kharkiv">Kharkov</a>(Ukraine), so I am not
a native English speaker. Learning English a few years ago I’ve come up with
idea: I have to write every new English word down to memorize it latter, but
it would be really cool to automate the process. That has intended me to start
developing the software like Smartdict. I don’t wanna learn all words in my
English textbook, I wanna learn words which I face in my daily practice.</p>
<p>Probably there already were some similar programs but I had some special requirements:</p>
<ul>
<li>It should be free and open source.</li>
<li>It should be compatible to Unix like operation system, since I’m a Linux user.</li>
<li>It should provide some core library, since I wanna use it within <a href="http://www.vim.org/">Vim</a>.</li>
<li>It should be possible to fetch data from different sources like <a href="http://goldendict.org/">GoldenDict</a> does.</li>
</ul>
<p>I started developing. Sometimes I gave it up for a few months, then I came back.
In April 08, 2012 I released the very first version on <a href="https://github.com/smartdict/smartdict">Github</a>
and <a href="https://rubygems.org/gems/smartdict">Rubygems</a>. It doesn’t look like a lot
of people used it, but I got some feedback from my friends.</p>
<h2>Technologies</h2>
<p>I’ve decided to use the next technologies to achieve my goals:</p>
<ul>
<li>Programming language: <a href="http://www.ruby-lang.org">ruby</a></li>
<li>GUI: <a href="http://ruby-gnome2.sourceforge.jp">GTK2</a>, but it’s possible to use another GUI libraries as well.</li>
<li>Data storage: <a href="http://www.sqlite.org/">SQLite</a> with <a href="http://datamapper.org/">DataMapper</a> as an ORM.</li>
</ul>
<p>I will write another blog post for developers where I’ll dive deeper in internal
structure of the project and technologies.</p>
<h2>The current goals:</h2>
<ul>
<li>Provide ability to track and learn translated words.</li>
<li>Integration with <a href="http://ankisrs.net/">Anki</a>. That would be a really sweet thing!</li>
<li>Create a Vim plugin based on <a href="https://github.com/smartdict/smartdict-core">smartdict-core</a>.</li>
</ul>
<h2>Afterwords</h2>
<p>I know it’s a short introduction. More information will come soon.
There is a lot of work needs to be done. If you interesting in taking a part in
the development process please let me know, I’ll appreciate your help!</p>
<p>Thanks.</p>
<p>P.S. Feel free to correct my English.</p>
]]></content>
</entry>
</feed>