<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Disqus - Friends of yawar_amin</title><link>http://disqus.com/by/yawar_amin/</link><description></description><atom:link href="http://disqus.com/yawar_amin/friends.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Wed, 14 Dec 2011 11:21:22 -0000</lastBuildDate><item><title>Re: Shortcomings of Mercurial</title><link>(u'http://humani.st/shortcomings-of-mercurial/',%20207551L)#comment-207551</link><description>&lt;p&gt;A bit of Git advocacy:&lt;/p&gt;&lt;p&gt; * Git handles binary files correctly (it detect binariness using algorithm used by diff and other GNU tools, but you can mark given file as binary or text using gitattributes). Binariness of file does not matter to the Git libXdiff deltaification. Git can send / generate binary patches. Unfortunately, depending on binary file and how much it repesentation change due to small underlying change, Git can fail to detect file rename or file copying (it is based on similarity score).&lt;/p&gt;&lt;p&gt;* From some time Git ships with its own diff3 / rcsmerge file level merge tool. It would put CVS-like conflict markers in a file which has merge conflict. There is git-mergetool helper which helps to use configured graphical merge tool kile KDiff3, Meld, Emacs emerge etc.&lt;/p&gt;&lt;p&gt;* Git has core.sharedRepository configuration option, with possible values being: group, all. umask, to set correct permissions for git repository files, when using repository in shared fashion. Nevertheless DSCMs are usually geared to other workflows...&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Fri, 07 Mar 2008 05:53:32 -0000</pubDate></item><item><title>Re: Shortcomings of Mercurial</title><link>(u'http://humani.st/shortcomings-of-mercurial/',%20209147L)#comment-209147</link><description>&lt;p&gt;@William Tanksley Jr:&lt;/p&gt;&lt;p&gt;First, when there is a merge conflict, Git leaves all three versions (base / ancestor, ours, theirs)  in the index (commit  staging area), and stores file with merge markers on filesystem. So you always have easy access ("git show :1:&amp;lt;file&amp;gt;" for example to get base version) to all versions.&lt;/p&gt;&lt;p&gt;Second, default pre-commit hook which ships with Git, and is by default installed in newly created repositories, detect merge markers in file (and also things like trailing whitespace) and refuses to make a commit if it looks like you didn't resolve a merge. You just have to enable it by making it executable ("chmod a+x .git/hooks/pre-commit"). Of course you can foce skipping verification phase if the tool misdetected merge markers with --no-verify option.&lt;/p&gt;&lt;p&gt;Third, you can use gitattributes to set merge driver for specified files, for example for all files, or/and you can use merge.default configuration option, choosing e.g. "binary" driver which leaves current version of file in the working dir in the case of conflicts.&lt;/p&gt;&lt;p&gt;BTW. why didn't you ask this question on Git mailing list or on #git channel on FreeNode? Git mailing list is open; you don't have to subscribe to post. Just make sure to specify that you'd like to get messages replied also to you, and/or read mailing list via mailing list archives or GMane NNTP (Usenet, news) interface.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Fri, 07 Mar 2008 15:16:49 -0000</pubDate></item><item><title>Re: Shortcomings of Mercurial</title><link>(u'http://humani.st/shortcomings-of-mercurial/',%20210207L)#comment-210207</link><description>&lt;p&gt;&lt;a href="http://git.or.cz/gitwiki/BlogPosts" rel="nofollow noopener" target="_blank" title="http://git.or.cz/gitwiki/BlogPosts"&gt;http://git.or.cz/gitwiki/Bl...&lt;/a&gt; see section "Portability" (Git on MacOS X).&lt;/p&gt;&lt;p&gt;As to why Git has so many dependencies: much of commands are written in either Perl (thus requiring Perl), or in shell scrips (thus requiring some of shell utils). Git also uses existing libraries, like libz, or libcurl, or libcrypto for things like compression, or HTTP protocol, or cryptographic hashes.&lt;/p&gt;&lt;p&gt;By the way, if I remember correctly, Mercurial has some of its code written in C for performance. And you have to got all those Python modules installed.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Fri, 07 Mar 2008 20:11:22 -0000</pubDate></item><item><title>Re: Shortcomings of Mercurial</title><link>(u'http://humani.st/shortcomings-of-mercurial/',%20211357L)#comment-211357</link><description>&lt;p&gt;@ William Tanksley Jr:&lt;/p&gt;&lt;p&gt;Errr... I think I haven't been clear enough. With Git you can either detect merge markers in (default, you only need to enable it) pre-commit hook and refusing commit unless overriden with --no-verify.&lt;/p&gt;&lt;p&gt;Or you can change default file-level merge driver for some files or for all files (using combination of gitattributes and config) from "text" (which inserts diff3 -E like merge markers) to "binary" (which leaves 'our' version on disk and does not insert any merge markers).&lt;/p&gt;&lt;p&gt;BTW: &lt;a href="http://git.or.cz/gitwiki/MailingList" rel="nofollow noopener" target="_blank" title="http://git.or.cz/gitwiki/MailingList"&gt;http://git.or.cz/gitwiki/Ma...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Sat, 08 Mar 2008 14:17:19 -0000</pubDate></item><item><title>Re: You keep using that word &amp;#8220;distributed&amp;#8221;&amp;#8230;</title><link>(u'http://devblog.avdi.org/2008/10/08/you-keep-using-that-word-distributed/',%202980500L)#comment-2980500</link><description>&lt;p&gt;I don't think hosting your own public repository over HTTP in Git is absurdly complicated (by the way, you can host via SSH, or via git protocol using git-daemon). You should share bare repository, and "dumb" HTTP protocol requires extra info present, which is provided by git-update-server-info, and which is automated by the use of update hook.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Fri, 10 Oct 2008 11:21:11 -0000</pubDate></item><item><title>Re: When will Padre move to Git?</title><link>(u'http://szabgab.com/when-will-padre-move-to-git.html',%2028730397L)#comment-28730397</link><description>&lt;p&gt;But Git is what Perl 5 uses.  And there is gitPAN.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Wed, 06 Jan 2010 19:30:08 -0000</pubDate></item><item><title>Re: bitquabit - The fighting&amp;#39;s been fun and all, but it&amp;#39;s time to shut up and get along</title><link>(u'http://blog.bitquabit.com/2010/02/10/fightings-been-fun-and-all-its-time-shut-and-get-along/',%2033828848L)#comment-33828848</link><description>&lt;p&gt;Is it the same as "the Hg-Git mercurial plugin" &lt;a href="http://hg-git.github.com/" rel="nofollow noopener" target="_blank" title="http://hg-git.github.com/"&gt;http://hg-git.github.com/&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Thu, 11 Feb 2010 06:17:56 -0000</pubDate></item><item><title>Re: bitquabit - The fighting&amp;#39;s been fun and all, but it&amp;#39;s time to shut up and get along</title><link>(u'http://blog.bitquabit.com/2010/02/10/fightings-been-fun-and-all-its-time-shut-and-get-along/',%2033829094L)#comment-33829094</link><description>&lt;p&gt;Git from version 1.7.0 would (by default) refuse to push into currently checked out branch.&lt;br&gt;Also all tutorials, introductions, manuals, etc. tell you to not push into non-bare repository.&lt;/p&gt;&lt;p&gt;By default means that you can configure this behavior.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Thu, 11 Feb 2010 06:25:05 -0000</pubDate></item><item><title>Re: bitquabit - The fighting&amp;#39;s been fun and all, but it&amp;#39;s time to shut up and get along</title><link>(u'http://blog.bitquabit.com/2010/02/10/fightings-been-fun-and-all-its-time-shut-and-get-along/',%2033829385L)#comment-33829385</link><description>&lt;p&gt;A bit of self promotion: with the help from Steve Losh (and his blog entry[1]) and people on #mercurial IRC channel on FreeNode for the Mercurial side of story, myself writing the Git part o story, there is nice writeup on differences between Git and Mercurial on Stackoverflow:&lt;/p&gt;&lt;p&gt;"Git and Mercurial - Compare and Contrast"&lt;br&gt;&lt;a href="http://stackoverflow.com/questions/1598759#1599930" rel="nofollow noopener" target="_blank" title="http://stackoverflow.com/questions/1598759#1599930"&gt;http://stackoverflow.com/qu...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;[1] &lt;a href="http://stevelosh.com/blog/entry/2009/8/30/a-guide-to-branching-in-mercurial/" rel="nofollow noopener" target="_blank" title="http://stevelosh.com/blog/entry/2009/8/30/a-guide-to-branching-in-mercurial/"&gt;http://stevelosh.com/blog/e...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Thu, 11 Feb 2010 06:34:15 -0000</pubDate></item><item><title>Re: bitquabit - Kiln&amp;#39;s Evolution, Part 2: From Prototype to Beta</title><link>(u'http://blog.bitquabit.com/2010/02/10/from-prototype-to-beta/',%2033851661L)#comment-33851661</link><description>&lt;p&gt;How Kiln compares to Gerrit Code Review: &lt;a href="http://code.google.com/p/gerrit/" rel="nofollow noopener" target="_blank" title="http://code.google.com/p/gerrit/"&gt;http://code.google.com/p/ge...&lt;/a&gt; (demo at &lt;a href="http://review.source.android.com" rel="nofollow noopener" target="_blank" title="http://review.source.android.com"&gt;http://review.source.androi...&lt;/a&gt;)?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Thu, 11 Feb 2010 10:51:40 -0000</pubDate></item><item><title>Re: The Real Difference Between Mercurial and Git / Steve Losh</title><link>(u'http://stevelosh.com/blog/2010/01/the-real-difference-between-mercurial-and-git/',%2034098274L)#comment-34098274</link><description>&lt;p&gt;About usefulness of git index: even if you don't use commit step by step (for 'git diff' to show only changes you are working on), and don't create partial commits / commits with dirty tree (using 'git stash --keep-index' to test them), git index is dead useful when merging... especially if you bork *part* of merge.&lt;/p&gt;&lt;p&gt;See "In praise of git’s index" by Aristotle Pagaltzis: &lt;a href="http://plasmasturm.org/log/gitidxpraise/" rel="nofollow noopener" target="_blank" title="http://plasmasturm.org/log/gitidxpraise/"&gt;http://plasmasturm.org/log/...&lt;/a&gt;&lt;br&gt;(found via &lt;a href="http://tomayko.com/)" rel="nofollow noopener" target="_blank" title="http://tomayko.com/)"&gt;http://tomayko.com/)&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Sat, 13 Feb 2010 07:41:31 -0000</pubDate></item><item><title>Re: The Real Difference Between Mercurial and Git / Steve Losh</title><link>(u'http://stevelosh.com/blog/2010/01/the-real-difference-between-mercurial-and-git/',%2034114920L)#comment-34114920</link><description>&lt;p&gt;Patch management interface, such as Mercurial mq, or StGIT (Stacked GIT) or Guilt for Git, can help only with the first part, to commit step by step (by refreshing the patch after each step).&lt;/p&gt;&lt;p&gt;It wouldn't help with creating commit from a dirty tree (to split changes into many commits), at least not directly.  And it wouldn't be of help when you did mistake resolving some conflict (but some other conflicts were resolved correctly, and some other conflicts are yet to be resolved).&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Sat, 13 Feb 2010 12:32:33 -0000</pubDate></item><item><title>Re: bitquabit - Kiln&amp;#39;s Evolution, Part 2: From Prototype to Beta</title><link>(u'http://blog.bitquabit.com/2010/02/10/from-prototype-to-beta/',%2036063548L)#comment-36063548</link><description>&lt;p&gt;FYI, here is link to Shawn O. Pearce (spearce), one of Gerrit developers, comparing Gerrit and Kiln on #git IRC channel:&lt;/p&gt;&lt;p&gt;&lt;a href="http://colabti.de/irclogger/irclogger_log/git?date=2010-02-16#l2704" rel="nofollow noopener" target="_blank" title="http://colabti.de/irclogger/irclogger_log/git?date=2010-02-16#l2704"&gt;http://colabti.de/irclogger...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;br&gt;for one, [Gerrit] is not commercial. :-)&lt;br&gt;&lt;br&gt;kiln is hg specific, gerrit is git specific. kiln seems to work under the notion of everyone having their own fork repositories, gerrit works under then notion of a shared team repository with all reviews pending in that.&lt;br&gt;&lt;br&gt;but, hey, competition is good. glad to see something come along for hg.&lt;br&gt;&lt;br&gt;i'm pretty sure fogcreek and myself approached the problem from different angles. i approached from the android side where we have &amp;gt;200+ git repositories and users don't want to fork all of them just to upload a 1 line code change. so i went with everything shared in one project. they seem to have approached from the more typical DVCS case of 1 repository : 1 project, with developers having only a few projects.&lt;br&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Tue, 23 Feb 2010 06:48:59 -0000</pubDate></item><item><title>Re: bitquabit - Kiln&amp;#39;s Evolution, Part 2: From Prototype to Beta</title><link>(u'http://blog.bitquabit.com/2010/02/10/from-prototype-to-beta/',%2036124539L)#comment-36124539</link><description>&lt;p&gt;Discussion continues (spearce, tghw, bmp) on #git:&lt;/p&gt;&lt;p&gt;&lt;a href="http://colabti.org/irclogger/irclogger_log/git?date=2010-02-23#l2733" rel="nofollow noopener" target="_blank" title="http://colabti.org/irclogger/irclogger_log/git?date=2010-02-23#l2733"&gt;http://colabti.org/irclogge...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Tue, 23 Feb 2010 17:08:53 -0000</pubDate></item><item><title>Re: Running Processes</title><link>(u'http://dustin.github.com/2010/02/28/running-processes.html',%2037459749L)#comment-37459749</link><description>&lt;p&gt;What about init-ng?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Mon, 01 Mar 2010 09:43:03 -0000</pubDate></item><item><title>Re: Sam Graham&amp;#39;s website &amp;gt; Perlblog &amp;gt; Template::Benchmark.pm v1.00 Released</title><link>(u'http://www.illusori.co.uk/blog/2010/05/10/template_benchmark_officially_released.html',%2049384966L)#comment-49384966</link><description>&lt;p&gt;Can Template::Benchmark measure &lt;b&gt;latency&lt;/b&gt; (i.e. perceived snapiness of templating engine), and not only throughput (end-to-end performance)?  Is automatical exaping of HTML one of features of templating engines that is considered?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Mon, 10 May 2010 15:03:19 -0000</pubDate></item><item><title>Re: Sam Graham&amp;#39;s website &amp;gt; Perlblog &amp;gt; Template::Benchmark.pm v1.00 Released</title><link>(u'http://www.illusori.co.uk/blog/2010/05/10/template_benchmark_officially_released.html',%2049423476L)#comment-49423476</link><description>&lt;p&gt;By difference between &lt;i&gt;latency&lt;/i&gt; and &lt;i&gt;throughput&lt;/i&gt; I mean here something like difference between 'time run_tempate | head &amp;gt;/dev/null' and 'time run_template &amp;gt;/dev/null'.  Here it would be measuring time it takes for templating engine to get first few lines of output, or get first page of output.&lt;/p&gt;&lt;p&gt;Templating engine might have good measured performance, but do not feel snappy.&lt;/p&gt;&lt;p&gt;As for (semi)automatic HTML escaping, I think it is one of features of templating engines.  Some are geared towards generating HTML and have escaping built in (&lt;a href="http://p3rl.org/Mojo::Template" rel="nofollow noopener" target="_blank" title="http://p3rl.org/Mojo::Template"&gt;Mojo::Template&lt;/a&gt;'s '%==', automatic HTML escaping in &lt;a href="http://p3rl.org/HTML::Zoom" rel="nofollow noopener" target="_blank" title="http://p3rl.org/HTML::Zoom"&gt;HTML::Zoom&lt;/a&gt;), some have HTML escaping filters (e.g. &lt;a href="http://www.masonbook.com/" rel="nofollow noopener" target="_blank" title="http://www.masonbook.com/"&gt;Mason&lt;/a&gt; and &lt;a href="http://template-toolkit.org/" rel="nofollow noopener" target="_blank" title="http://template-toolkit.org/"&gt;Template Toolkit&lt;/a&gt;).&lt;/p&gt;&lt;p&gt;When one wants to select templating engine to be used in a web application, easy HTML escaping should be one of features taken into account, I think.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Mon, 10 May 2010 19:26:52 -0000</pubDate></item><item><title>Re: Sam Graham&amp;#39;s website &amp;gt; Perlblog &amp;gt; Template::Benchmark.pm v1.00 Released</title><link>(u'http://www.illusori.co.uk/blog/2010/05/10/template_benchmark_officially_released.html',%2049678264L)#comment-49678264</link><description>&lt;p&gt;Do you plan on adding plugins for other Perl templating systems, like Perlish templates Template::Declare and similar Markapl, selector based templates with pure (X)HTML/XML as template Template::Semantic and HTML::Zoom (and pQuery), and perhaps also TAL templates (from Zope CMS) Template::TAL and Petal, Haml templates (from Ruby) Text::Haml?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Tue, 11 May 2010 06:17:44 -0000</pubDate></item><item><title>Re: Sam Graham&amp;#39;s website &amp;gt; Perlblog &amp;gt; Perl Template Roundup Announced</title><link>(u'http://www.illusori.co.uk/blog/2010/07/01/template_roundup.html',%2060114288L)#comment-60114288</link><description>&lt;p&gt;In "Template Engines Used for the June 2010 Roundup" both &lt;b&gt;TeMMHM&lt;/b&gt; and &lt;b&gt;TeMMTeTe&lt;/b&gt; have the same description: 'Text::MicroMason (2.07) using Text::MicroMason::HTMLMason (no version number)'&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Thu, 01 Jul 2010 05:14:49 -0000</pubDate></item><item><title>Re: Sam Graham&amp;#39;s website &amp;gt; Perlblog &amp;gt; Perl Template Roundup Announced</title><link>(u'http://www.illusori.co.uk/blog/2010/07/01/template_roundup.html',%2060159335L)#comment-60159335</link><description>&lt;p&gt;A few possible improvements: "Reports" page, in "Choose a report" table has first column with uncached_string..instance_reuse unnamed (without column header).  It is &lt;a href="http://search.cpan.org/~sgraham/Template-Benchmark-1.02/lib/Template/Benchmark/Engine.pm#Cache_Types" rel="nofollow noopener" target="_blank" title="http://search.cpan.org/~sgraham/Template-Benchmark-1.02/lib/Template/Benchmark/Engine.pm#Cache_Types"&gt;Cache Types&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;The "Jump to chart:" menu in individual per-cache-type reports, and also headers for individual per-feature results, could use short &lt;a href="http://search.cpan.org/~sgraham/Template-Benchmark-1.02/lib/Template/Benchmark/Engine.pm#Template_Features" rel="nofollow noopener" target="_blank" title="http://search.cpan.org/~sgraham/Template-Benchmark-1.02/lib/Template/Benchmark/Engine.pm#Template_Features"&gt;description of each feature&lt;/a&gt;, e.g. &amp;lt;tt&amp;gt;literal_text - A chunk of literal text, dumped through to the output largely unchanged from its form in the template.&amp;lt;/tt&amp;gt;  The plots would be more readable if they were horizontal rather than vertical, but then I guess there would be problem with describing bins (describing axis).  The x-axis (the value axis) is not described; is in seconds, or is it is operations per seconds?  There really should be mentioned that &lt;b&gt;lower / higher is better&lt;/b&gt; (as it suits).&lt;/p&gt;&lt;p&gt;The summary page also doesn't have description if &lt;b&gt;lower&lt;/b&gt; or &lt;b&gt;higher&lt;/b&gt; means better performance.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Thu, 01 Jul 2010 12:58:42 -0000</pubDate></item><item><title>Re: Sam Graham&amp;#39;s website &amp;gt; Perlblog &amp;gt; Perl Template Roundup Announced</title><link>(u'http://www.illusori.co.uk/blog/2010/07/01/template_roundup.html',%2060619221L)#comment-60619221</link><description>&lt;p&gt;One more thing, although I am not sure if you wouldn't hit Google Charts limitation: in every place where you use shortcut name for caching engine + behaviour, e.g. &lt;b&gt;HTP&lt;/b&gt; you could put full name, e.g. &lt;i&gt;HTML::Template::Pro (0.95)&lt;/i&gt;, in 'title' attribute of element (or &amp;lt;abbr&amp;gt; element) to be visible on mouseover.  This way one wouldn't need to go back to starting page if one forgets e.g. what HTP is shortcut for.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Mon, 05 Jul 2010 08:56:24 -0000</pubDate></item><item><title>Re: Sam Graham&amp;#39;s website &amp;gt; Perlblog &amp;gt; Perl Template Roundup Announced</title><link>(u'http://www.illusori.co.uk/blog/2010/07/01/template_roundup.html',%2060627467L)#comment-60627467</link><description>&lt;blockquote&gt;&lt;br&gt;&lt;b&gt;Sam Graham:&lt;/b&gt;&lt;br&gt;&lt;br&gt;Hmm, there should be a tooltip mouse-over for the charts giving that information already. Is that not working for you?&lt;br&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;I am sorry, I haven't checked if it was corrected before writing last comment.  I see tooltip with &lt;b&gt;&lt;i&gt;all&lt;/i&gt;&lt;/b&gt; the shortcuts for &lt;b&gt;&lt;i&gt;chart as a whole&lt;/i&gt;&lt;/b&gt;; I would prefer having &lt;b&gt;small&lt;/b&gt; tooltip over only &lt;b&gt;single shortcut&lt;/b&gt;, but that might be not possible with Google Chart API.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Mon, 05 Jul 2010 10:35:00 -0000</pubDate></item><item><title>Re: Hacking Thy Fearful Symmetry</title><link>(u'http://techblog.babyl.ca/entry/schwartz-factor',%2097041825L)#comment-97041825</link><description>&lt;p&gt;What about adding this functionality to cpan-mangler?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Sun, 14 Nov 2010 07:23:53 -0000</pubDate></item><item><title>Re: Hacking Thy Fearful Symmetry</title><link>(u'http://techblog.babyl.ca/entry/cpanvote-is-live',%20161230874L)#comment-161230874</link><description>&lt;p&gt;Does it / would it allow one to recant or change one's vote?&lt;/p&gt;&lt;p&gt;A good example of implemented voting mechanizm can be Reddit, or Stackoverflow.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Sun, 06 Mar 2011 06:24:13 -0000</pubDate></item><item><title>Re: My Git Workflow and Why You Should Use Git</title><link>(u'https://games.greggman.com/game/my-git-workflow-and-why-you-should-use-git/',%20386515401L)#comment-386515401</link><description>&lt;p&gt;What do those do?&lt;br&gt;&lt;/p&gt;&lt;pre&gt;$ git cl upload&lt;br&gt;$ git try&lt;br&gt;&lt;br&gt;&lt;/pre&gt;&lt;p&gt;&lt;br&gt;These are not git commmands&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jakub Narębski</dc:creator><pubDate>Wed, 14 Dec 2011 11:21:22 -0000</pubDate></item></channel></rss>