User Török Gábor - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T06:09:15Zhttp://stackoverflow.com/feeds/user/73603http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1576887/what-does-l-in-emacs-lisp-source-code-mean5What does ^L in (Emacs Lisp) source code mean?Török Gábor2009-10-16T08:42:56Z2009-11-30T08:31:42Z
<p>Several times I see <code>^L</code> in (mostly Emacs Lisp) source codes that looks like are separators of larger logical groups. Is it their real purpose? And if so, how can I use them? Is there a built-in Emacs functionality that utilize it?</p>
http://stackoverflow.com/questions/1720971/how-to-master-google-analytics/1721288#17212881Answer by Török Gábor for How to Master Google AnalyticsTörök Gábor2009-11-12T10:24:39Z2009-11-12T10:24:39Z<p>Amongts <a href="http://stackoverflow.com/questions/1720971/how-to-master-google-analytics/1720986#1720986">Clifton's book</a>, I recommend you to take the Google Analytics Individual Qualification test for which there is a lot of related <a href="http://www.google.com/support/conversionuniversity/?hl=en" rel="nofollow">lessons in the Conversion University</a>, and get subscribed to the <a href="http://analytics.blogspot.com/" rel="nofollow">official Analytics blog</a> to keep yourself up-to-date with the new features.</p>
http://stackoverflow.com/questions/1714847/in-emacs-how-does-the-hyperlink-in-the-help-buffer-work/1715328#17153282Answer by Török Gábor for In emacs how does the "hyperlink" in the *Help* buffer work?Török Gábor2009-11-11T13:57:22Z2009-11-11T13:57:22Z<p>The major mode of the <code>*Help*</code> buffers is <code>help-mode</code>. In its source code (<code>help-mode.el</code>), you find function <code>help-make-xrefs</code> that <em>"Parse[s] and hyperlink[s] documentation cross-references in the given BUFFER"</em>. You may check it how it was implemented.</p>
<p>Otherwise, I'd suggest using <code>org-mode</code> instead, which uses the simple form <code>[[URI][caption]]</code> to <a href="http://www.gnu.org/software/emacs/manual/html%5Fnode/org/Link-format.html#Link-format" rel="nofollow">mark hyperlinks</a>.</p>
http://stackoverflow.com/questions/1648704/justified-plain-text-from-html/1709062#17090621Answer by Török Gábor for Justified plain text from HTMLTörök Gábor2009-11-10T16:04:49Z2009-11-10T16:16:36Z<p>If you are familiar with Emacs, you may open the HTML file in <a href="http://emacs-w3m.namazu.org/" rel="nofollow">Emacs-W3M</a> (i.e. <code>M-x w3m-find-file foo.html</code>), save the rendered page as a plain text file, and then call <code>M-x set-justification-full</code> on it.</p>
<p>You can even write a small function to do the job:</p>
<pre><code>(defun my-html-to-justifed-text (html-file text-file)
"Convert HTML-FILE to plain TEXT-FILE."
(find-file html-file)
(w3m-rendering-buffer)
(set-justification-full (point-min) (point-max))
(write-file text-file))
(my-html-to-justifed-text "~/tmp/2.html" "~/tmp/2.txt")
</code></pre>
http://stackoverflow.com/questions/1707550/custom-emacs-keybindings-not-working/1708259#17082594Answer by Török Gábor for Custom Emacs Keybindings not WorkingTörök Gábor2009-11-10T14:13:22Z2009-11-10T14:13:22Z<p>You have an error in your <code>.emacs</code> at line:</p>
<pre><code>(cperl-set-style PerlStyle)
</code></pre>
<p>It should be written as:</p>
<pre><code>(cperl-set-style 'PerlStyle)
</code></pre>
<p>Since it raises an error that stops parsing <code>.emacs</code> at that point, your key bindings won't be evaluated.</p>
http://stackoverflow.com/questions/1686337/hyphens-or-underscores-in-css-and-html-identifiers1Hyphens or underscores in CSS and HTML identifiers?Török Gábor2009-11-06T09:03:22Z2009-11-10T09:26:35Z
<p>As both hyphen (<code>-</code>) and underscore (<code>_</code>) are valid characters in CSS and HTML identifiers, what are the advantages and disadvantages using one or the other? I prefer writing CSS class names with hyphens (e.g. <code>field-text</code>) and underscores for IDs (e.g. <code>featured_content</code>). Is there a best practice or it's only the matter of taste?</p>
http://stackoverflow.com/questions/1680750/is-there-any-way-to-get-ediff-to-not-open-its-navigation-interface-in-an-external/1680998#16809982Answer by Török Gábor for Is there any way to get Ediff to not open its navigation interface in an external window?Török Gábor2009-11-05T14:44:42Z2009-11-05T14:44:42Z<p>From chapter <em><a href="http://www.gnu.org/software/emacs/manual/html%5Fnode/ediff/Window-and-Frame-Configuration.html" rel="nofollow">Window and Frame Configuration</a></em> in Ediff User's Manual:</p>
<blockquote>
<p>The following variable controls how
windows are set up:</p>
<p><code>ediff-window-setup-function</code></p>
<p>The multiframe setup is done by the <code>ediff-setup-windows-multiframe</code>
function, which is the default on
windowing displays. The plain setup,
one where all windows are always in
one frame, is done by
<code>ediff-setup-windows-plain</code>, which is
the default on a non-windowing display
(or in an xterm window). In fact,
under Emacs, <strong>you can switch freely
between these two setups by executing
the command <code>ediff-toggle-multiframe</code></strong>
using the Minibuffer of the Menubar.</p>
</blockquote>
http://stackoverflow.com/questions/1667921/question-about-jsonencode-and-two-dimensional-array/1667976#16679762Answer by Török Gábor for Question about json_encode and two dimensional arrayTörök Gábor2009-11-03T15:19:01Z2009-11-03T15:19:01Z<pre><code>$arr = array();
while($row = mysql_fetch_assoc($result)) {
$arr[] = $row;
}
echo json_encode($arr);
</code></pre>
http://stackoverflow.com/questions/1636352/using-regular-expressions-in-shell-script/1636538#16365384Answer by Török Gábor for Using regular expressions in shell scriptTörök Gábor2009-10-28T10:56:41Z2009-10-28T10:56:41Z<p>For working with JSON in shell script, use <a href="http://github.com/micha/jsawk" rel="nofollow">jsawk</a> which <em>like awk, but for JSON</em>.</p>
<pre><code>json=$(curl -s http://stackoverflow.com/users/flair/165297.json)
echo $json | jsawk 'return this.reputation' # 2,747
</code></pre>
http://stackoverflow.com/questions/1633117/tracking-submissions-of-a-form-which-doesnt-submit-anywhere/1634038#16340383Answer by Török Gábor for Tracking submissions of a form which doesn't submit anywhereTörök Gábor2009-10-27T22:32:25Z2009-10-27T22:32:25Z<p>Function <code>_trackPageview()</code>—that is part of the standard tracking code you embed in your web pages—could be also called with an argument string at anytime to generate a virtual page request for Google Analytics.</p>
<blockquote>
<p>Google Analytics' <code>_trackPageview</code> is
a function for use on ga.js tracked
sites that allows you to track events
on your site that do not generate a
pageview. Using the <code>_trackPageview</code>
JavaScript, you can assign a specific
page filename to Flash events,
JavaScript events, file downloads,
outbound links, and more.</p>
</blockquote>
<p>For further details see article <a href="http://www.google.com/support/googleanalytics/bin/answer.py?answer=55521" rel="nofollow">How do I track JavaScript events?</a> in Google Analytics Help Center.</p>
http://stackoverflow.com/questions/1631807/decoding-html-entities-in-emacs-elisp/1632224#16322241Answer by Török Gábor for Decoding HTML entities in Emacs/ElispTörök Gábor2009-10-27T16:54:51Z2009-10-27T16:54:51Z<p>Don't know if there is a built in function, but this small function can do the job:</p>
<pre><code>(defun my-insert-encode-entities-string (str)
(mapconcat
(lambda (char) (format "&#%d;" char))
(string-to-list str)
""))
</code></pre>
<p>If you only wish to encode HTML entities, use <code>url-insert-entities-in-string</code> instead.</p>
http://stackoverflow.com/questions/1623309/emacs-not-load-emacs-configuration-file/1623363#16233635Answer by Török Gábor for emacs not load (.emacs) configuration fileTörök Gábor2009-10-26T06:29:55Z2009-10-26T06:29:55Z<blockquote>
<p>Your <a href="http://www.emacswiki.org/emacs/InitFile" rel="nofollow">init file</a> contains personal EmacsLisp code that you want to execute when you start Emacs.</p>
<ul>
<li>For GnuEmacs, it is <code>~/.emacs</code> or <code>_emacs</code> or <code>~/.emacs.d/init.el</code>.</li>
<li>For XEmacs, it is <code>~/.xemacs</code> or <code>~/.xemacs/init.el</code>.</li>
</ul>
</blockquote>
http://stackoverflow.com/questions/1593366/define-an-emacs-command-that-calls-another-emacs-command-preserving-interactive/1594279#15942794Answer by Török Gábor for Define an emacs command that calls another emacs command (preserving interactive stuff)Török Gábor2009-10-20T12:32:48Z2009-10-20T12:44:25Z<p>You may advise the original function, if you want to modify its behavior instead of calling a separate function.</p>
<p>From <a href="http://www.gnu.org/software/emacs/manual/html%5Fnode/elisp/Around%5F002dAdvice.html" rel="nofollow">chapter 17.3 Around-Advice</a> of the GNU Emacs Lisp Reference Manual:</p>
<blockquote>
<p>Around-advice lets you “wrap” a Lisp
expression “around” the original
function definition.</p>
<pre><code> (defadvice foo (around foo-around)
"Ignore case in `foo'."
(let ((case-fold-search t))
ad-do-it))
</code></pre>
</blockquote>
<p>In your case, you can write:</p>
<pre><code>(defadvice query-replace (around alt-query-replace (from-string to-string &optional delimited start end))
(let ((case-fold-search (not case-fold-search)))
ad-do-it))
(ad-activate 'query-replace)
</code></pre>
http://stackoverflow.com/questions/1584838/drop-down-options-depending-on-the-selected-radio-button-in-javascript/1585820#15858201Answer by Török Gábor for drop down options depending on the selected radio button in javascriptTörök Gábor2009-10-18T19:38:35Z2009-10-18T19:38:35Z<p>First of all, make form usable and accessible even with JavaScript is disabled. Create an HTML markup that contains the dropdown lists for the radio buttons.</p>
<p>Then when JavaScript is enabled, hide element the dropdown elements on document load, and attach and event handler to radio buttons, so when of one them was checked, toggle visibility of the proper dropdown list. </p>
http://stackoverflow.com/questions/1502301/exposing-variables-to-google-analytics/1582564#15825642Answer by Török Gábor for Exposing variables to Google AnalyticsTörök Gábor2009-10-17T16:18:36Z2009-10-17T16:18:36Z<p>Google Analytics provides a way to group your users via custom visitor segmentation.</p>
<p>For instance, if you'd like to track visitors by their user profile, you can just write</p>
<pre><code>pageTracker._setVar("subscribers")
</code></pre>
<p>where <code>pageTracker</code> is a GA tracker instance, and <code>_setVar()</code> is the method you can set a custom label to the visitor's session. Label is stored in the <code>__utmv</code> session cookie, and you only have to call it once at the beginning of the tracking session.</p>
<p>For further details, see the <a href="http://code.google.com/apis/analytics/docs/tracking/gaTrackingVisitors.html" rel="nofollow">Visitor Configuration</a> chapter in GA Developer's Guide.</p>
http://stackoverflow.com/questions/1573870/which-editor-is-used-in-wordpress/1573889#15738899Answer by Török Gábor for which editor is used in wordpress?Török Gábor2009-10-15T17:28:40Z2009-10-15T17:42:37Z<p>WordPress uses the <a href="http://codex.wordpress.org/TinyMCE" rel="nofollow">TinyMCE</a> editor by Moxiecode Systems:</p>
<blockquote>
<p>WordPress is bundled with the open source HTML WYSIWYG editor TinyMCE by Moxiecode Systems, AB. </p>
</blockquote>
http://stackoverflow.com/questions/1567107/disable-auto-fill-mode-in-noweb-mode/1571564#15715643Answer by Török Gábor for Disable auto fill mode in noweb-modeTörök Gábor2009-10-15T10:39:35Z2009-10-15T10:39:35Z<p>Instead of adding further hooks to your system, you should check if you could remove some to disable auto-fill.</p>
<p>If you see <a href="ftp://www.eecs.harvard.edu/pub/nr/noweb/src/elisp/noweb-mode.el" rel="nofollow">noweb-mode's source code</a>, around line 211 you find this chunk:</p>
<pre><code>(add-hook 'noweb-select-doc-mode-hook 'noweb-auto-fill-doc-mode)
(add-hook 'noweb-select-code-mode-hook 'noweb-auto-fill-code-mode)
</code></pre>
<p>To disable auto filling, put the following one or two lines in your dotemacs (depending on whether you want to disable auto-fill in both code and documentation).</p>
<pre><code>(remove-hook 'noweb-select-doc-mode-hook 'noweb-auto-fill-doc-mode)
(remove-hook 'noweb-select-code-mode-hook 'noweb-auto-fill-code-mode)
</code></pre>
http://stackoverflow.com/questions/1554486/google-analyics-doesnt-track-links-generated-with-ajax/1564986#15649860Answer by Török Gábor for Google Analyics doesn't track links generated with AJAXTörök Gábor2009-10-14T08:27:14Z2009-10-14T08:27:14Z<p>When you write "these links are loaded via AJAX", I assume that you parse the affiliate links via the <code>affiliateLink</code> class name, and then attach and onclick handler to them. In that case, it may happen, that those handlers were run before the <code>_trackPageview</code> was called you defined in the <code>onclick</code> attribute. Why don't you call the <code>_trackPageview</code> function in the same function that handles the outgoing links?</p>
http://stackoverflow.com/questions/1561514/does-google-analytics-combine-naked-domains-with-the-www-subdomain/1564878#15648782Answer by Török Gábor for Does google analytics combine naked domains with the www subdomain?Török Gábor2009-10-14T07:55:52Z2009-10-14T08:19:14Z<p>Yes, users will be tracked, but the same visitor coming from <em>www.datalookups.com</em> and <em>datalookups.com</em> will be counted as two different visitors. GA uses cookies to store session information on visitors, and since <em>www.datalookups.com</em> and <em>datalookups.com</em> are different hosts, different cookies belong to them. To get over this issue, I suggest to set up a proper HTTP redirection that brings permanently either user from <em>www.datalookups.com</em> to <em>datalookups.com</em> or vice versa—it's a matter of taste. (Not to mention that this method balks search engine crawlers to index your web content twice.)</p>
<p>For the sake of completeness, there is a way to tell Google Analytics to share session information between to different hosts with the <a href="http://code.google.com/apis/analytics/docs/tracking/gaTrackingSite.html#domainSubDomains" rel="nofollow"><code>pageTracker._setDomainName</code></a> function, but that is not the right answer for the current situation.</p>
http://stackoverflow.com/questions/1558178/wrap-selection-in-open-close-tag-like-textmate/1560293#15602931Answer by Török Gábor for Wrap selection in Open/Close Tag like TextMate?Török Gábor2009-10-13T13:33:53Z2009-10-13T13:33:53Z<p>For <code>sgml-mode</code> deratives, mark region to tagify, type <code>M-x sgml-tag</code>, and type the tag name you like to use (press <code>TAB</code> to get list of available HTML elements). Altough, this method does not allow you to tagify each line in a region, you can work around this by recording a keyboard macro.</p>
http://stackoverflow.com/questions/797442/is-there-an-emacs-lisp-library-for-generating-html6Is there an Emacs Lisp library for generating HTML?Török Gábor2009-04-28T11:37:49Z2009-10-08T17:35:49Z
<p>I'm looking for a solution that allows me to write native Emacs Lisp code and at compile time turns it into HTML, like <a href="http://opensource.franz.com/aserve/aserve-dist/doc/htmlgen.html" rel="nofollow">Franz's htmlgen</a>:</p>
<pre><code>(html
((:div class "post")
(:h1 "Title")
(:p "Hello, World!")))
</code></pre>
<p>Of course I can <a href="http://www.gigamonkeys.com/book/practical-an-html-generation-library-the-interpreter.html" rel="nofollow">write my own macros</a>, but I'm interested if there are any projects around this problem.</p>
http://stackoverflow.com/questions/1509688/emacs-macro-to-generate-a-sequence/1510293#15102932Answer by Török Gábor for Emacs macro to generate a sequence?Török Gábor2009-10-02T15:34:12Z2009-10-02T15:34:12Z<p>Beside <a href="http://stackoverflow.com/questions/1509688/emacs-macro-to-generate-a-sequence/1510038#1510038">scottfrazer's answer</a>, there is another way to create a sequence of numbers with <a href="http://www.emacswiki.org/emacs/CuaMode" rel="nofollow">CUA mode</a> which may help you a lot when editing existing content. See <a href="http://vimeo.com/1168225?pg=embed&sec=1168225" rel="nofollow">Mark Mansour's screencast on Emacs Column Editing</a> from position 2:30.</p>
http://stackoverflow.com/questions/1481657/how-to-do-a-case-sensitve-incremental-search-in-emacs-of-an-all-lower-case-patter/1481722#14817226Answer by Török Gábor for How to do a case-sensitve incremental search in Emacs of an all lower case pattern?Török Gábor2009-09-26T17:44:20Z2009-09-29T16:12:15Z<p><a href="http://www.emacswiki.org/emacs/IncrementalSearch" rel="nofollow">Emacs' incremental search</a> (that is, <code>isearch-forward</code>) has a lot of modifiers to change the current search's behavior which you can type on the fly immediately after <code>C-s</code>.</p>
<p>From <code>isearch-forward</code>'s documentation:</p>
<blockquote>
<p>Type <code>M-c</code> to toggle search
case-sensitivity.</p>
</blockquote>
http://stackoverflow.com/questions/1478835/add-identifier-to-browser-bookmarks/1491542#14915421Answer by Török Gábor for Add identifier to browser bookmarksTörök Gábor2009-09-29T09:38:49Z2009-09-29T09:38:49Z<p>Keep in mind that <em>bookmark</em> traffic is not simply part of your direct traffic.
There is a nice demonstration in Justin Cutroni's blog how <a href="http://www.epikone.com/blog/2009/05/20/how-google-analytics-tracks-bookmark-visits/" rel="nofollow">Google Analytics tracks <em>bookmark</em> visits</a> and it turned out, that most of the time, <em>bookmark</em> visits are shown as organic (if you suppose, that people first do a Google search and then bookmark your site).</p>
http://stackoverflow.com/questions/1475279/how-to-control-indentation-after-an-open-parenthesis-in-emacs/1476922#14769221Answer by Török Gábor for How to control indentation after an open parenthesis in EmacsTörök Gábor2009-09-25T12:03:30Z2009-09-25T12:03:30Z<p>Since <a href="http://www.emacswiki.org/emacs/ecmascript-mode.el" rel="nofollow">ecmascript-mode</a> is based on cc-mode, you can use <code>c-set-offset</code> which allows you to customize any syntactic symbol's offset with the preferred value.</p>
<p>In your case, go to the point which is indented in the wrong level, hit <code>C-c C-o</code> (or type <code>M-x c-set-offset</code>), accept the suggested symbol (<code>arglist-intro</code>), and set it a new value (e.g. <code>+</code>, the default offset).</p>
<p>You can also do it programmatically in your dotemacs, for instance, with:</p>
<pre><code>(add-hook 'ecmascript-mode-hook
(lambda ()
(c-set-offset 'arglist-intro '+)
(c-set-offset 'arglist-close 0)))
</code></pre>
http://stackoverflow.com/questions/1468111/how-do-i-jump-to-the-matching-tag-when-editing-editing-html-in-emacs/1471468#14714681Answer by Török Gábor for How do I jump to the matching tag, when editing editing HTML in Emacs?Török Gábor2009-09-24T12:45:00Z2009-09-24T12:45:00Z<p>And if you're using <code>sgml-mode</code> or its derivatives (e.g. <code>html-mode</code>):</p>
<blockquote>
<p><code>sgml-skip-tag-forward</code> is an
interactive compiled Lisp function in
<code>`sgml-mode.el'</code>.</p>
<p>It is bound to <code>C-c C-f</code>, <code>C-c <right></code>,
<code><menu-bar> <sgml>
<sgml-skip-tag-forward></code>.</p>
<p><code>(sgml-skip-tag-forward arg)</code></p>
<p>Skip to end of tag or matching closing
tag if present. With prefix argument
arg, repeat this arg times. Return t
if after a closing tag.</p>
</blockquote>
http://stackoverflow.com/questions/1459429/strtotime-for-emacs-lisp2strtotime for Emacs LispTörök Gábor2009-09-22T11:07:20Z2009-09-23T08:46:19Z
<p>Is there any functionality in Emacs Lisp that behaves similar to <a href="http://php.net/strtotime" rel="nofollow">PHP's <code>strtotime</code> function</a>? (Actually AFAIK it implements <a href="http://www.gnu.org/software/tar/manual/html%5Fnode/Relative-items-in-date-strings.html#SEC120" rel="nofollow">relative items of the GNU date input formats</a>.)</p>
<p>In PHP I can write</p>
<pre><code>echo strtotime("+2 months"); //1258891352
echo strtotime("-3 months +2 weeks"); //1246952239
</code></pre>
<p>which return the corresponding UNIX timestamps.</p>
http://stackoverflow.com/questions/1458181/why-isnt-return-bound-to-newline-and-indent-by-default-on-emacs/1458652#14586522Answer by Török Gábor for Why isn't return bound to newline-and-indent by default on emacsTörök Gábor2009-09-22T07:39:36Z2009-09-22T07:39:36Z<p>To have those nice and easy defaults, install <a href="http://emacsblog.org/2008/12/05/emacs-starter-kit/" rel="nofollow">Emacs Starter Kit</a>. It enables by default a bunch of useful and convenient features make even the advanced Emacs users more productive.</p>
<p>Otherwise, <a href="http://stackoverflow.com/questions/1458181/why-isnt-return-bound-to-newline-and-indent-by-default-on-emacs/1458238#1458238">as TJ pointed out</a>, Emacs Customization Mode (type <code>M-x customize</code>) allows you to save permanently any of the settings. You can even store them in a separate file from your dotemacs―<code>(setq custom-file "~/.emacs-custom.el")</code>―so you can use it in every computer you work on.</p>
http://stackoverflow.com/questions/1371638/bignum-in-emacs-elisp/1371825#13718254Answer by Török Gábor for bignum in emacs/elispTörök Gábor2009-09-03T07:05:28Z2009-09-03T08:08:07Z<blockquote>
<p>Emacs Lispers frustrated by Emacs’s
lack of bignum handling: <code>calc.el</code>
provides very good bignum
capabilities.—<em>EmacsWiki</em></p>
</blockquote>
<p><code>calc.el</code> is part of the GNU Emacs distribution. See its source code for available functions. You can immediately start playing with it by typing <code>M-x quick-calc</code>. You may also want to check <a href="http://www.astro.princeton.edu/~rhl/skyserver/bigint.el" rel="nofollow">bigint.el package</a>, that is a non-standard, lightweight implementation for handling bignums.</p>
http://stackoverflow.com/questions/1362541/how-to-write-a-google-analytics-filter-to-record-site-searches/1366721#13667213Answer by Török Gábor for How to write a Google Analytics filter to record site searchesTörök Gábor2009-09-02T09:39:14Z2009-09-02T10:24:22Z<p>Yes, you can create a custom filter that rewrites URL <code>/search/<category>/<query></code> to <code>?q=<query>&c=<category></code>.</p>
<p>Go to <em>Analytics Settings › Filter Manager</em>, and click <em>Add Filter</em>. Choose <em>Custom Filter</em> in the <em>Filter Type</em> drop-down list, select <em>Search and Replace</em> radio button, and then set two <em>Request URI</em> fields with the corresponding values. For further details, see ’<a href="http://www.google.com/support/analytics/bin/answer.py?hl=en&answer=55494" rel="nofollow">How do I create a filter?</a>’ page in Google Analytics Help Center.</p>
<p>Keep in mind! Since past visitor data cannot be reprocessed, always keep a ’raw’ profile that you do not apply filters against. For further details, see chapter ’<a href="http://services.google.com/analytics/breeze/en/filters/index.html" rel="nofollow">Best Practices for Filters & Profiles</a>’ in presentation ’Filters in Google Analytics’.</p>
http://stackoverflow.com/questions/249103/ie7-and-the-css-table-cell-property/1235847#1235847Comment by Török Gábor on IE7 and the CSS table-cell propertyTörök Gábor2009-11-23T09:22:41Z2009-11-23T09:22:41ZTo be precise, the <code>*</code> (asterisk) hack addresses IE 7 and below.http://stackoverflow.com/questions/249103/ie7-and-the-css-table-cell-property/249260#249260Comment by Török Gábor on IE7 and the CSS table-cell propertyTörök Gábor2009-11-23T09:20:39Z2009-11-23T09:20:39ZIt works as long as the content fits in one line.http://stackoverflow.com/questions/1760939/how-to-write-an-emacs-function-to-wrap-the-marked-region-with-specified-text/1761310#1761310Comment by Török Gábor on How to write an Emacs function to wrap the marked region with specified textTörök Gábor2009-11-19T10:47:20Z2009-11-19T10:47:20ZSee also: <a href="http://xahlee.org/emacs/wrap-url.html" rel="nofollow">xahlee.org/emacs/wrap-url.html</a>http://stackoverflow.com/questions/514038/elegant-ways-to-return-multiple-values-from-a-function/1487669#1487669Comment by Török Gábor on Elegant ways to return multiple values from a functionTörök Gábor2009-11-17T15:40:09Z2009-11-17T15:40:09ZDo not post a question as an answer.http://stackoverflow.com/questions/907225/object-oriented-javascript-best-practices/908021#908021Comment by Török Gábor on Object Oriented Javascript best practices ?Török Gábor2009-11-13T13:21:55Z2009-11-13T13:21:55ZCan you please tell me why was it down voted? Critics are always welcome.http://stackoverflow.com/questions/1720971/how-to-master-google-analytics/1720986#1720986Comment by Török Gábor on How to Master Google AnalyticsTörök Gábor2009-11-12T10:21:10Z2009-11-12T10:21:10Z@Josef: most of the topics covered in the book are essential and conceptional keys to understand Analytics in deep. The source codes, however, need to be reviewed before usage since some API changes in the past.http://stackoverflow.com/questions/1720629/css-adding-an-id-number-to-a-css-tag/1720863#1720863Comment by Török Gábor on [CSS] adding an ID Number to a CSS TagTörök Gábor2009-11-12T09:07:30Z2009-11-12T09:07:30ZFor the same purpose as here in Stack Overflow, see the target of the "link" links below each answers.http://stackoverflow.com/questions/1707550/custom-emacs-keybindings-not-working/1708106#1708106Comment by Török Gábor on Custom Emacs Keybindings not WorkingTörök Gábor2009-11-10T14:15:10Z2009-11-10T14:15:10ZNo need for the parenthesis.http://stackoverflow.com/questions/1696864/naming-class-and-id-html-attributes-dashes-vs-underlinesComment by Török Gábor on Naming "class" and "id" HTML attributes - dashes vs. underlinesTörök Gábor2009-11-10T08:49:04Z2009-11-10T08:49:04ZDuplicate of <a href="http://stackoverflow.com/questions/1686337/hyphens-or-underscores-in-css-and-html-identifiers" rel="nofollow" title="hyphens or underscores in css and html identifiers">stackoverflow.com/questions/1686337/…</a> and <a href="http://stackoverflow.com/questions/1437527/css-camelcase-vs-underscore" rel="nofollow" title="css camelcase vs underscore">stackoverflow.com/questions/1437527/…</a>http://stackoverflow.com/questions/1686337/hyphens-or-underscores-in-css-and-html-identifiersComment by Török Gábor on Hyphens or underscores in CSS and HTML identifiers?Török Gábor2009-11-10T08:41:23Z2009-11-10T08:41:23ZI've just realized there is already a similar question on SO: <a href="http://stackoverflow.com/questions/1437527/css-camelcase-vs-underscore" rel="nofollow" title="css camelcase vs underscore">stackoverflow.com/questions/1437527/…</a>http://stackoverflow.com/questions/1686337/hyphens-or-underscores-in-css-and-html-identifiers/1687859#1687859Comment by Török Gábor on Hyphens or underscores in CSS and HTML identifiers?Török Gábor2009-11-06T14:47:31Z2009-11-06T14:47:31ZA smart text editor provides a way to customize what counts as word character--so this is not a real reason why not use hyphens.http://stackoverflow.com/questions/65849/how-to-insert-line-breaks-in-html-documents-using-css/75845#75845Comment by Török Gábor on How to insert line breaks in HTML documents using CSSTörök Gábor2009-11-06T11:04:44Z2009-11-06T11:04:44ZIt's not a real answer, but a comment.http://stackoverflow.com/questions/65849/how-to-insert-line-breaks-in-html-documents-using-css/790292#790292Comment by Török Gábor on How to insert line breaks in HTML documents using CSSTörök Gábor2009-11-06T11:03:58Z2009-11-06T11:03:58ZBeware: <code>form div.commentform label, input</code> != <code>form div.commentform label, form div.commentform input</code>!http://stackoverflow.com/questions/1631807/decoding-html-entities-in-emacs-elisp/1632224#1632224Comment by Török Gábor on Decoding HTML entities in Emacs/ElispTörök Gábor2009-10-30T07:59:41Z2009-10-30T07:59:41Z@Federico: I'm not sure if I can see your point. Calling <code>(my-insert-encode-entities-string "So I'm looking")</code> returns exactly the same result you provided. Variable <code>char</code> holds the current character represented as a integer so in this particular case I think it's no matter whether using <code>%s</code> or <code>%d</code>.http://stackoverflow.com/questions/1643997/how-to-remove-the-margin-between-two-images/1644037#1644037Comment by Török Gábor on How to remove the margin between two images ?Török Gábor2009-10-29T14:27:21Z2009-10-29T14:27:21Z+1 this is the correct answer in this case as it produces no side-effects (what <code>float:left</code> and <code>display:block</code> do).