<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
  <channel>
    <title>Megaphone of Anton Vasiljev</title>
    <link>http://antono.info/en</link>
    <pubDate>Sun, 25 Oct 2009 15:56:09 GMT</pubDate>
    <description>TODO: description</description>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/antono_en" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
      <title>Brute Force Dictionaries in Ruby</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/4fL810mS7es/170-brute-force-dictionaries-in-ruby</link>
      <description>&lt;pre class='brush:ruby' style='font-size: x-small'&gt;
module Brute
  def dict(word_size, alphabet)
    alphabet = alphabet.split('') unless alphabet.is_a?(Array)
    first = (alphabet[1] + alphabet[0]  * word_size).alpha_to_i(alphabet)
    last  = (alphabet[1] + alphabet[-1] * word_size).alpha_to_i(alphabet)
    (first..last).collect{ |n| n.to_alpha(alphabet)[1..-1] }
  end 
  module_function :dict
end

class Fixnum
  def to_alpha(alphabet)
    alphabet = alphabet.split('') unless alphabet.is_a?(Array)
    self.to_s(alphabet.size).split('').collect{ |n| alphabet[n.to_i] }.join
  end 
end

class String
  def alpha_to_i(alphabet)
    alphabet = alphabet.split('') unless alphabet.is_a?(Array)
    self.strip.split('').collect { |c| alphabet.index(c) }.join.to_i(alphabet.size)
  end 
end
&lt;/pre&gt;
&lt;p&gt;Github: &lt;a href='http://github.com/antono/brute'&gt;http://github.com/antono/brute&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The code will be published as rubygem soon.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/4fL810mS7es" height="1" width="1"/&gt;</description>
      <pubDate>Sun, 25 Oct 2009 15:56:09 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/170-brute-force-dictionaries-in-ruby</guid>
    <feedburner:origLink>http://antono.info/en/170-brute-force-dictionaries-in-ruby</feedburner:origLink></item>
    <item>
      <title>Vim Macros</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/6qh0H9rvIBw/167-vim-macros</link>
      <description>&lt;object height='300' width='400'&gt;&lt;param name='allowfullscreen' value='true' /&gt;&lt;param name='allowscriptaccess' value='always' /&gt;&lt;param name='movie' value='http://vimeo.com/moogaloop.swf?clip_id=6860031&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1' /&gt;&lt;embed src='http://vimeo.com/moogaloop.swf?clip_id=6860031&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1' allowfullscreen='true' type='application/x-shockwave-flash' allowscriptaccess='always' height='300' width='400' /&gt;&lt;/object&gt;
&lt;p&gt;PS: :help q&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/6qh0H9rvIBw" height="1" width="1"/&gt;</description>
      <pubDate>Fri, 16 Oct 2009 13:07:57 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/167-vim-macros</guid>
    <feedburner:origLink>http://antono.info/en/167-vim-macros</feedburner:origLink></item>
    <item>
      <title>Save as root in vim</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/ar5Oe_-shbY/166-save-as-root-in-vim</link>
      <description>&lt;p&gt;If you edited file as non privileged user and want to save it bypasing &amp;#8216;permission denied&amp;#8217; you have to use this snippet:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;cmap w!! %!sudo tee &amp;gt; /dev/null %&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Add this to your ~/.vimrc and use :w!! to save file with sudo&amp;#8230;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/ar5Oe_-shbY" height="1" width="1"/&gt;</description>
      <pubDate>Mon, 12 Oct 2009 22:36:44 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/166-save-as-root-in-vim</guid>
    <feedburner:origLink>http://antono.info/en/166-save-as-root-in-vim</feedburner:origLink></item>
    <item>
      <title>Install Adium themes to Empathy</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/rWvbEjbQa_U/165-install-adium-themes-to-empathy</link>
      <description>&lt;pre class='brush:shell'&gt;
     #!/bin/sh
     # Adium theme AdiumMessageStyle installer for Empathy
     # Last version here: http://gist.github.com/191499

     if [ -z $1 ]
       then
     	echo
     	echo "	Usage:"
     	echo "		`basename $0` adiumxtra://some.url.here/extra"
     	echo
     	exit 1
     else
     	TMPDIR=`mktemp --directory`
     	XTRAURL=`echo $1 | sed -e "s/^adiumxtra:/http:/"`
     	DEST="$HOME/.local/share/adium/message-styles/"
     	if [ !-d $DEST ]
     	then
     		mkdir -v -p $DEST
     	fi
     
     	cd $TMPDIR
     	echo "Downloding extra..."
     	wget --no-verbose --progress=bar:force -O xtra.zip $XTRAURL
     	unzip -qq xtra.zip
     
     	THEMES=`ls -d *.AdiumMessageStyle/`
     
     	if [ -z $THEMES ]
     	then
     		echo "No themes found in downloaded file"
     	else
     		for theme in $THEMES
     		do
     			cp -r $theme $DEST
     		done
     		echo "\nTheme $XTRAURL was succesfully installed to $DEST"
     	fi
     	rm xtra.zip
     	rm -r $TMPDIR
     fi
     exit 0
&lt;/pre&gt;
&lt;p&gt;Use gconf to enable this protocol handler for clever browsers:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;gconftool-2 -t string -s /desktop/gnome/url-handlers/adiumxtra/command &amp;quot;/usr/loca/bin/adiumxtra-install %s&amp;quot;
gconftool-2 -t bool -s /desktop/gnome/url-handlers/adiumxtra/enabled true
gconftool-2 -t bool -s /desktop/gnome/url-handlers/adiumxtra/needs_terminal false&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Works at least in Chromium :)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/rWvbEjbQa_U" height="1" width="1"/&gt;</description>
      <pubDate>Tue, 22 Sep 2009 22:44:19 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/165-install-adium-themes-to-empathy</guid>
    <feedburner:origLink>http://antono.info/en/165-install-adium-themes-to-empathy</feedburner:origLink></item>
    <item>
      <title>Ruby 1.9.1 for Ubuntu Karmic</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/ilIwlWQNTLM/164-ruby-1-9-1-for-ubuntu-karmic</link>
      <description>&lt;p&gt;Packaging of ruby 1.9.1 &lt;a href='https://code.edge.launchpad.net/~ubuntu-branches/ubuntu/karmic/ruby1.9.1/karmic'&gt;in progress&lt;/a&gt;, but if you cannot wait and want to test new features you can build the &lt;a href='https://launchpad.net/ubuntu/+source/ruby1.9.1'&gt;package&lt;/a&gt; yourself:&lt;/p&gt;

&lt;p&gt;Installing build-dependencies:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt; sudo aptitude install debhelper cdbs dpatch \ 
 patch autoconf m4 bison binutils libgdbm-dev \ 
 libncurses5-dev libreadline5-dev tcl8.4-dev \ 
 tk8.4-dev zlib1g-dev libssl-dev procps&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Building the package:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt; sudo atitude install devscripts build-essential
 mkdir /tmp/ruby191 &amp;amp;&amp;amp; cd /tmp/ruby191
 dget https://launchpad.net/ubuntu/karmic/+source/ruby1.9.1/1.9.1.243-0ubuntu1/+files/ruby1.9.1_1.9.1.243-0ubuntu1.dsc
 dpkg-source -x ruby1.9.1_1.9.1.243-0ubuntu1.dsc
 cd ruby1.9.1-1.9.1.243 &amp;amp;&amp;amp; debuild
 cd .. &amp;amp;&amp;amp; sudo dpkg -i *.deb&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;And finally You can get it from &lt;a href='https://edge.launchpad.net/~ubuntu-on-rails/+archive/ppa'&gt;Ubuntu on Rails PPA&lt;/a&gt;:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt; sudo aptitude install ruby1.9.1 ri1.9.1 rdoc1.9.1 ...&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;and much more&amp;#8230; :)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/ilIwlWQNTLM" height="1" width="1"/&gt;</description>
      <pubDate>Fri, 07 Aug 2009 01:02:45 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/164-ruby-1-9-1-for-ubuntu-karmic</guid>
    <feedburner:origLink>http://antono.info/en/164-ruby-1-9-1-for-ubuntu-karmic</feedburner:origLink></item>
    <item>
      <title>Graphical interface for SQLite</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/VM_FnMf7RC8/163-graphical-interface-for-sqlite</link>
      <description>&lt;p&gt;Today I improved &lt;a href='http://rsqlitegui.rubyforge.org/'&gt;rsqlitegui&lt;/a&gt; a little bit (original author is inactive since 2007 so i forked it on gitorious). &lt;a href='http://gitorious.org/ubuntu-on-rails/sqlitegui/commits/gtkbuilder'&gt;Migrated&lt;/a&gt; it from &lt;a href='http://www.micahcarrick.com/05-30-2008/gtk-builder-libglade-faq.html'&gt;Glade to GtkBuilder&lt;/a&gt;, made small refactoring and tail the code for &lt;a href='http://gitorious.org/ubuntu-on-rails/sqlitegui/commit/57244941ac81b625225b4119d64d3c1faf7090e0ё'&gt;setup.rb&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Package for Ubuntu Karmic is availible at &lt;a href='https://edge.launchpad.net/~ubuntu-on-rails/+archive/ppa'&gt;PPA for Ubuntu on Rails Team&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;SQLite GUI needs a little work and nice Tango-styled icon (anybody?).&lt;/p&gt;

&lt;p&gt;Everybody loves screenshots:&lt;/p&gt;

&lt;p&gt;&lt;img src='http://antono.info/files/images/screen/sqlitegui.png' alt='SQLlite GUI' /&gt;&lt;/p&gt;

&lt;p&gt;PS: &lt;a href='http://gitorious.org/ubuntu-on-rails/sqlitegui'&gt;Git repository of the project&lt;/a&gt; at &lt;a href='http://gitorious.org'&gt;gitorious.org&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/VM_FnMf7RC8" height="1" width="1"/&gt;</description>
      <pubDate>Sun, 02 Aug 2009 22:15:20 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/163-graphical-interface-for-sqlite</guid>
    <feedburner:origLink>http://antono.info/en/163-graphical-interface-for-sqlite</feedburner:origLink></item>
    <item>
      <title>Liferea 1.6 for Ubuntu Karmic</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/9nHjs-IUdB4/161-liferea-1-6-for-ubuntu-karmic</link>
      <description>&lt;p&gt;You can get new version of &lt;a href='http://liferea.sf.net/'&gt;Liferea&lt;/a&gt; from special PPA:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;deb http://ppa.launchpad.net/liferea/ppa/ubuntu karmic main 
deb-src http://ppa.launchpad.net/liferea/ppa/ubuntu karmic main&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Integration with Google Reader works awesome. Liferea rocks!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/9nHjs-IUdB4" height="1" width="1"/&gt;</description>
      <pubDate>Mon, 27 Jul 2009 23:35:26 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/161-liferea-1-6-for-ubuntu-karmic</guid>
    <feedburner:origLink>http://antono.info/en/161-liferea-1-6-for-ubuntu-karmic</feedburner:origLink></item>
    <item>
      <title>Ubuntu on Rails Team progress</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/z2upOPCXz2Q/159-ubuntu-on-rails-team-progress</link>
      <description>&lt;p&gt;I&amp;#8217;ve updated PPA for &lt;a href='http://launchpad.net/~ubuntu-on-rails'&gt;Ubuntu on Rails&lt;/a&gt; and this post is call for testing:&lt;/p&gt;

&lt;p&gt;&lt;a href='http://launchpad.net/~ubuntu-on-rails/+archive/ppa'&gt;http://launchpad.net/~ubuntu-on-rails/+archive/ppa&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What&amp;#8217;s new there:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;rbbr - Ruby browser with fixed crashers!&lt;/li&gt;

&lt;li&gt;gitg - Git browser from git :)&lt;/li&gt;

&lt;li&gt;libgems-ruby - Backported from Debian sid. (&lt;a href='https://bugs.edge.launchpad.net/ubuntu-on-rails/+bug/385922'&gt;bug&lt;/a&gt; closed)&lt;/li&gt;

&lt;li&gt;vim-rails + vim-snipmate - updated from git&lt;/li&gt;

&lt;li&gt;and more&amp;#8230;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Please, report bugs &lt;a href='https://bugs.launchpad.net/ubuntu-on-rails'&gt;here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you want to contribute something to ubuntu on rails, please join &lt;a href='http://gitorious.org'&gt;http://gitorious.org&lt;/a&gt; (free hosting on free platform for free software developers) and join &lt;a href='http://gitorious.org/+ubuntu-on-rails-team/'&gt;http://gitorious.org/+ubuntu-on-rails-team/&lt;/a&gt; (write message to me &lt;a href='http://gitorious.org/~antono'&gt;antono&lt;/a&gt;) and feel free create your clones and push your work :)&lt;/p&gt;

&lt;p&gt;If You interested in further evolution of our team, our PPA and Ubuntu, please join our mailing list. You can subscribe at your subscription page:&lt;/p&gt;

&lt;p&gt;http://launchpad.net/~&lt;span&gt;yourlogin&lt;/span&gt;/+editemails&lt;/p&gt;

&lt;p&gt;Address of mailing list is: ubuntu-on-rails@lists.launchpad.net&lt;/p&gt;

&lt;p&gt;If You have a problem with subscription you can contact me for help :)&lt;/p&gt;

&lt;p&gt;Thank you for attention! Have a nice day! :)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/z2upOPCXz2Q" height="1" width="1"/&gt;</description>
      <pubDate>Wed, 22 Jul 2009 15:59:24 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/159-ubuntu-on-rails-team-progress</guid>
    <feedburner:origLink>http://antono.info/en/159-ubuntu-on-rails-team-progress</feedburner:origLink></item>
    <item>
      <title>Jamendo - open your ears :)</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/qfFY2ZOrVJ4/158-jamendo-open-your-ears</link>
      <description>&lt;p&gt;&lt;img src='/files/images/screen/jamendo-ivan-ivanovich-begi-suka.png' alt='Rhythmbox играет Иван Иваныча прямо с Jamendo' /&gt;&lt;/p&gt;

&lt;p&gt;You can download a lot of free music via torrents (do not forget to seed them some days ;).&lt;/p&gt;

&lt;p&gt;&lt;a href='http://jamendo.org' title='Free, Legal, Unlimited'&gt;&lt;img src='http://img.jamendo.com/ads/largebanner-en.gif' alt='Free, Legal, Unilimited' /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/qfFY2ZOrVJ4" height="1" width="1"/&gt;</description>
      <pubDate>Tue, 21 Jul 2009 20:07:19 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/158-jamendo-open-your-ears</guid>
    <feedburner:origLink>http://antono.info/en/158-jamendo-open-your-ears</feedburner:origLink></item>
    <item>
      <title>Client-side Syntax Highlighter for Rails</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/jmr7nZ_Y7VI/150-client-side-syntax-highlighter-for-rails</link>
      <description>&lt;p&gt;Just published &lt;a href='http://github.com/antono/sh2/tree/master'&gt;my wrapper&lt;/a&gt; around &lt;a href='http://alexgorbatchev.com/wiki/SyntaxHighlighter'&gt;SyntaxHighlighter2&lt;/a&gt; (&lt;a href='http://github.com/antono/syntaxhighlighter2/tree/master'&gt;git mirror&lt;/a&gt;).&lt;/p&gt;
&lt;pre class='brush:bash;light: true'&gt;
script/plugin install git://github.com/antono/sh2.git
rake -T sh2
rake sh2:install
&lt;/pre&gt;
&lt;p&gt;Add following intro &lt;em&gt;head&lt;/em&gt; section of your layout:&lt;/p&gt;
&lt;pre class='brush:ruby;light: true'&gt;
include_syntax_highlighter_assets(:themes =&gt; :midnight, :brushes =&gt; :all)
&lt;/pre&gt;
&lt;p&gt;And this at the bottom of page:&lt;/p&gt;
&lt;pre class='brush:ruby;light: true'&gt;
sh2_highlight_code
&lt;/pre&gt;
&lt;p&gt;This code:&lt;/p&gt;
&lt;pre class='brush:html;light: true'&gt;
&lt;pre class='brush:ruby'&gt;

  1000.times { puts 'Руби Руби Руби Руби' }
&lt;/pre&gt;
&lt;/pre&gt;
&lt;p&gt;become this:&lt;/p&gt;
&lt;pre class='brush:ruby'&gt;
  1000.times { puts 'Руби Руби Руби Руби' }
&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/jmr7nZ_Y7VI" height="1" width="1"/&gt;</description>
      <pubDate>Wed, 15 Jul 2009 18:07:54 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/150-client-side-syntax-highlighter-for-rails</guid>
    <feedburner:origLink>http://antono.info/en/150-client-side-syntax-highlighter-for-rails</feedburner:origLink></item>
    <item>
      <title>Wireshark 1.2 for Ubuntu Jaunty</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/0qOQLEHypgg/144-wireshark-1-2-for-ubuntu-jaunty</link>
      <description>&lt;p&gt;You can get it from my &lt;a href='https://edge.launchpad.net/~antono/+archive/antono-production'&gt;PPA&lt;/a&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;deb http://ppa.launchpad.net/antono/antono-production/ubuntu jaunty main 
deb-src http://ppa.launchpad.net/antono/antono-production/ubuntu jaunty main &lt;/code&gt;&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/0qOQLEHypgg" height="1" width="1"/&gt;</description>
      <pubDate>Fri, 26 Jun 2009 11:31:49 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/144-wireshark-1-2-for-ubuntu-jaunty</guid>
    <feedburner:origLink>http://antono.info/en/144-wireshark-1-2-for-ubuntu-jaunty</feedburner:origLink></item>
    <item>
      <title>Rake: undefined method `reenable' (resolved)</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/EXiYMOc-9cs/138-rake-undefined-method-reenable-resolved</link>
      <description>&lt;p&gt;If you got something like&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;undefined method `reenable&amp;#39; for &amp;lt;Rake::Task db:schema:dump =&amp;gt; [environment]&amp;gt;:Rake::Task&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;when trying rails migrations, you certainly should update your rake&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;sudo aptitude remove rake
sudo gem install rake&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;PS: &lt;a href='http://launchpad.net/~ubuntu-on-rails'&gt;Join Launchpad group Ubuntu on Rails&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/EXiYMOc-9cs" height="1" width="1"/&gt;</description>
      <pubDate>Sat, 16 May 2009 08:03:09 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/138-rake-undefined-method-reenable-resolved</guid>
    <feedburner:origLink>http://antono.info/en/138-rake-undefined-method-reenable-resolved</feedburner:origLink></item>
    <item>
      <title>rndc: connection issue (RESOLVED)</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/YgGXc66farM/137-rndc-connection-issue-resolved</link>
      <description>&lt;p&gt;After small experiments with dns caching daemons I back to bind9 and found out that rndc cannot connect to it.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;rndc status
rndc: connection to remote host closed
This may indicate that
* the remote server is using an older version of the command protocol,
* this host is not authorized to connect,
* the clocks are not synchronized, or
* the key is invalid&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Checked that /etc/rndc.conf and /etc/bind/rndc.key matches. Rebooted bind but met the same problem.&lt;/p&gt;

&lt;p&gt;After some investigation i found that port lwresd listening on 953 port.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;netstat -atpn | grep -E &amp;quot;:953|:53&amp;quot;
pkill named
pkill lwresd
/etc/init.d/bind9 start&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;I hope this help you :)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/YgGXc66farM" height="1" width="1"/&gt;</description>
      <pubDate>Fri, 15 May 2009 06:22:29 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/137-rndc-connection-issue-resolved</guid>
    <feedburner:origLink>http://antono.info/en/137-rndc-connection-issue-resolved</feedburner:origLink></item>
    <item>
      <title>Torvalds goes GNOME!</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/J5ni5T-WU2A/133-torvalds-goes-gnome</link>
      <description>&lt;p&gt;Linus Torvalds switched to GNOME:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;I used to be a KDE user. I thought KDE 4.0 was such a disaster I switched to GNOME. I hate the fact that my right button doesn&amp;#8217;t do what I want it to do. But the whole &amp;#8220;break everything&amp;#8221; model is painful for users and they can choose to use something else.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href='http://www.computerworld.com/action/article.do?command=viewArticleBasic&amp;amp;taxonomyName=Software&amp;amp;articleId=9126619&amp;amp;taxonomyId=18&amp;amp;pageNumber=5'&gt;Prooflink&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/J5ni5T-WU2A" height="1" width="1"/&gt;</description>
      <pubDate>Sat, 24 Jan 2009 06:01:35 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/133-torvalds-goes-gnome</guid>
    <feedburner:origLink>http://antono.info/en/133-torvalds-goes-gnome</feedburner:origLink></item>
    <item>
      <title>Isn't she pretty?</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/sTzAk7lNgiA/131-isn-t-she-pretty</link>
      <description>&lt;p&gt;&lt;img src='http://antono.info/files/images/kommodore.jpg' alt='Natalie Thompson' /&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/sTzAk7lNgiA" height="1" width="1"/&gt;</description>
      <pubDate>Wed, 07 Jan 2009 16:08:50 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/131-isn-t-she-pretty</guid>
    <feedburner:origLink>http://antono.info/en/131-isn-t-she-pretty</feedburner:origLink></item>
    <item>
      <title>Got FreeRunner!</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/2X6IJYlSm18/129-got-freerunner</link>
      <description>&lt;p&gt;Finally my dreams come true!&lt;/p&gt;

&lt;p&gt;Enjoy some unboxing photos:&lt;/p&gt;

&lt;p&gt;&lt;img src='/files/images/freerunner-unboxing/neo-in-the-box-thumb.jpg' alt='Neo FreeRunner in The box' /&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/2X6IJYlSm18" height="1" width="1"/&gt;</description>
      <pubDate>Tue, 06 Jan 2009 11:42:14 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/129-got-freerunner</guid>
    <feedburner:origLink>http://antono.info/en/129-got-freerunner</feedburner:origLink></item>
    <item>
      <title>Gemdocs v0.5</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/r0rq-XQqF18/124-gemdocs-v0-5</link>
      <description>&lt;p&gt;Just made some useful changes to &lt;a href='http://launchpad.net/gemdocs'&gt;Gemdocs&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now you can faster acces to gem&amp;#8217;s rdoc and even to mentioned version of this doc:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;gemdocs merb-helpers 1_0_6_1&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;New version of gemdocs has bash completions scripts, gemdocs.desktop file and nice icon derived from devhelp.svg (i&amp;#8217;ve replaced D with R[uby]) :)&lt;/p&gt;

&lt;p&gt;&lt;img src='http://antono.info/files/images/ekrankopio/gemdocs-with-gnome-do.png' alt='Gemdocs with Gnome Do in action' /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href='http://launchpad.net/gemdocs'&gt;Gemdocs&lt;/a&gt; and &lt;a href='http://do.davebsd.com/'&gt;Gnome Do&lt;/a&gt; in action.&lt;/p&gt;

&lt;p&gt;&lt;img src='http://antono.info/files/images/ekrankopio/gemdocs-in-gnome-terminal.png' alt='Gemdocs in console' /&gt;&lt;/p&gt;

&lt;p&gt;Gemdocs in console with autocompletion.&lt;/p&gt;

&lt;p&gt;You can get gemdocs &lt;a href='https://edge.launchpad.net/~antono/+archive'&gt;from my PPA&lt;/a&gt; on Launchpad. Sources &lt;a href='https://code.edge.launchpad.net/~antono/gemdocs/trunk'&gt;availible in this Bazaar repository&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;UPD: Latest bugfixes only in &lt;a href='https://edge.launchpad.net/~antono/+archive'&gt;PPA&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/r0rq-XQqF18" height="1" width="1"/&gt;</description>
      <pubDate>Sat, 27 Dec 2008 13:09:29 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/124-gemdocs-v0-5</guid>
    <feedburner:origLink>http://antono.info/en/124-gemdocs-v0-5</feedburner:origLink></item>
    <item>
      <title>Iptables: traversal order</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/q3CRJqxLckE/121-iptables-traversal-order</link>
      <description>&lt;p&gt;Just done visual refresh of (ip)table traversal schema.&lt;/p&gt;

&lt;p&gt;&lt;a href='/files/images/iptables-traverse.jpg'&gt;Until&lt;/a&gt; and &lt;a href='http://antono.info/files/images/iptables-traverse.svg'&gt;After&lt;/a&gt;.&lt;/p&gt;
&lt;a href='http://creativecommons.org/licenses/by-sa/3.0/' rel='license'&gt;&lt;img src='http://i.creativecommons.org/l/by-sa/3.0/88x31.png' alt='Creative Commons License' style='border-width:0' /&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/q3CRJqxLckE" height="1" width="1"/&gt;</description>
      <pubDate>Mon, 15 Dec 2008 12:05:12 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/121-iptables-traversal-order</guid>
    <feedburner:origLink>http://antono.info/en/121-iptables-traversal-order</feedburner:origLink></item>
    <item>
      <title>Fast clear logs in Linux</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/E1ZLVbSlEIM/119-fast-clear-logs-in-linux</link>
      <description>&lt;p&gt;Thiz way:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;for i in *; do :&amp;gt; $i; done&lt;/code&gt;&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/E1ZLVbSlEIM" height="1" width="1"/&gt;</description>
      <pubDate>Mon, 08 Dec 2008 18:56:50 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/119-fast-clear-logs-in-linux</guid>
    <feedburner:origLink>http://antono.info/en/119-fast-clear-logs-in-linux</feedburner:origLink></item>
    <item>
      <title>Mail from Merb via Gmail</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/MWwjRM6M18Q/117-mail-from-merb-via-gmail</link>
      <description>&lt;p&gt;Memories&amp;#8230;&lt;/p&gt;

&lt;p&gt;config/init.rb:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;Merb::BootLoader.after_app_loads do
  dependency &amp;#39;tlsmail&amp;#39;

  # Activate SSL Support
   Net::SMTP.enable_tls(OpenSSL::SSL::VERIFY_NONE)

  # Configure Merb Mailer
  Merb::Mailer.config = {
    :host   =&amp;gt; &amp;#39;smtp.gmail.com&amp;#39;,
    :port   =&amp;gt; &amp;#39;587&amp;#39;,
    :user   =&amp;gt; &amp;#39;user@gmail.com&amp;#39;,
    :pass   =&amp;gt; &amp;#39;pass&amp;#39;,
    :auth   =&amp;gt; :plain
  }
end&lt;/code&gt;&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/MWwjRM6M18Q" height="1" width="1"/&gt;</description>
      <pubDate>Wed, 26 Nov 2008 09:37:50 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/117-mail-from-merb-via-gmail</guid>
    <feedburner:origLink>http://antono.info/en/117-mail-from-merb-via-gmail</feedburner:origLink></item>
    <item>
      <title>Shuttleworth on Capitalism</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/Zo7TseQ8CI4/116-shuttleworth-on-capitalism</link>
      <description>&lt;blockquote&gt;
&lt;p&gt;I used to be a fan of Adam Smith’s invisible hand, and great admirer of Ayn Rand’s vision. Now, I feel differently. Left to it’s own devices, the market will tend to reinforce the position of those who were successful in the past, at the exclusion of those who might create future successes. We see evidence of this all the time. The heavyweights that define an industry tend to do everything in their power to prevent innovation from changing the rules that enrich them.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Cite from this &lt;a href='http://www.markshuttleworth.com/archives/227'&gt;blog post&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/Zo7TseQ8CI4" height="1" width="1"/&gt;</description>
      <pubDate>Mon, 24 Nov 2008 05:46:18 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/116-shuttleworth-on-capitalism</guid>
    <feedburner:origLink>http://antono.info/en/116-shuttleworth-on-capitalism</feedburner:origLink></item>
    <item>
      <title>Quality of Apple products</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/pevIBv7KLTA/114-quality-of-apple-products</link>
      <description>&lt;p&gt;&lt;img src='http://antono.info/files/images/apple-mac-suxx.jpg' alt='Quality of Apples Mac' /&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/pevIBv7KLTA" height="1" width="1"/&gt;</description>
      <pubDate>Sun, 23 Nov 2008 20:17:28 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/114-quality-of-apple-products</guid>
    <feedburner:origLink>http://antono.info/en/114-quality-of-apple-products</feedburner:origLink></item>
    <item>
      <title>Bundle all, David</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/IvMkG3Pg_R0/113-bundle-all-david</link>
      <description>&lt;blockquote&gt;
&lt;p&gt;This statement by David actually teases out a fundamental difference of opinion between Rails and Merb. In effect, Rails prefers to bundle everything to reduce dependencies, while Merb prefers to use the existing Rubygems system so that applications can use different versions of the “bundled” dependencies.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href='http://yehudakatz.com/2008/11/15/mythbusting-rails-is-not-a-monolith/'&gt;More..&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/IvMkG3Pg_R0" height="1" width="1"/&gt;</description>
      <pubDate>Sat, 22 Nov 2008 21:13:18 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/113-bundle-all-david</guid>
    <feedburner:origLink>http://antono.info/en/113-bundle-all-david</feedburner:origLink></item>
    <item>
      <title>Ruby and conventions</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/TIJqm2-rgII/112-ruby-and-conventions</link>
      <description>&lt;p&gt;Even if it&amp;#8217;s possible to give camelCase names to ruby methods and variables You should not do it!&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;monthCombo.addItem(Qt::Date.longMonthName(month))&lt;/code&gt;&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/TIJqm2-rgII" height="1" width="1"/&gt;</description>
      <pubDate>Sat, 22 Nov 2008 19:41:48 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/112-ruby-and-conventions</guid>
    <feedburner:origLink>http://antono.info/en/112-ruby-and-conventions</feedburner:origLink></item>
    <item>
      <title>MacBook Air User</title>
      <link>http://feedproxy.google.com/~r/antono_en/~3/MzENAlQsinE/110-macbook-air-user</link>
      <description>&lt;p&gt;&lt;img src='/files/images/voodoo/macbook-air.jpg' alt='MacBook Air User' /&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/antono_en/~4/MzENAlQsinE" height="1" width="1"/&gt;</description>
      <pubDate>Fri, 21 Nov 2008 17:04:18 GMT</pubDate>
      <guid isPermaLink="false">http://antono.info/en/110-macbook-air-user</guid>
    <feedburner:origLink>http://antono.info/en/110-macbook-air-user</feedburner:origLink></item>
  </channel>
</rss>
