User niXar - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T17:11:25Zhttp://stackoverflow.com/feeds/user/19979http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1171376/matrix-transposition-in-xslt3Matrix transposition in XSLTniXar2009-07-23T12:18:40Z2009-07-23T13:23:25Z
<p>I'm trying to go from this kind of input:</p>
<pre><code><col title="one">
<cell>a</cell> <cell>b</cell> <cell>c</cell> <cell>d</cell>
</col>
<col title="two">
<cell>e</cell> <cell>f</cell> <cell>g</cell>
</col>
</code></pre>
<p>... to this HTML output with XSLT:</p>
<pre><code><table>
<tr> <th>one</th> <th>two</th> </tr>
<tr> <td>a</td> <td>e</td> </tr>
<tr> <td>b</td> <td>f</td> </tr>
<tr> <td>c</td> <td>g</td> </tr>
<tr> <td>d</td> </tr>
</table>
</code></pre>
<p>In other words I want to perform a matrix transposition. I couldn't find a simple way to do that, there probably isn't, I guess; how about a complicated one? While searching on Google I found hints that a way to solve this was through recursion. Any idea appreciated.</p>
http://stackoverflow.com/questions/150043/python-v-perl/157411#1574111Answer by niXar for Python v. PerlniXar2008-10-01T12:45:30Z2009-07-23T09:12:41Z<p>Perl, the language, is a mess. But perl, the interpreter/VM, has an edge over python in that it is stackless (the language's calling stack doesn't use the system stack). As a result of this, Perl can do real shared memory threads while Python cannot. There is a <a href="http://www.stackless.com/" rel="nofollow">stackless</a> python but it is experimental, not in the mainline source. </p>
<p>That is the most significant technical difference, and might not even matter that much anyway. Everything else is subjective, and a matter of personnal preference:</p>
<ul>
<li><p>Perl has more libraries; Python has
better ones. <em>Edit</em>: Perl's are more mature. For instance many Python programs at this time can't do SSL through HTTP CONNECT on a proxy. </p></li>
<li><p>More people know Perl; Python is
used on more projects.</p></li>
<li><p>Perl has more documentation; Python's more usable.</p></li>
<li><p>Perl is installed on almost every *nix system; Python is a central part (system scripts, configuration
dialogs) of most Linux/BSD distribs.</p></li>
<li><p>You can find third-party Perl APIs to almost anything; almost everything provides Python APIs.</p></li>
</ul>
<p>Disclaimer: YAPH. </p>
http://stackoverflow.com/questions/973324/how-do-i-get-the-type-of-a-blessed-ref-arrayhashscalar4How do I get the type of a blessed ref? (ARRAY|HASH|SCALAR)niXar2009-06-10T01:30:58Z2009-06-18T00:20:32Z
<p>I'm passed a reference, and I want to know its type. For this purpose,
"ref" works on unblessed references, but on blessed references it returns
the package name it was blessed with. </p>
<pre><code> $a=[];
print ref $a;
</code></pre>
<blockquote>
<p>ARRAY</p>
</blockquote>
<pre><code> bless $a, 'mytype';
print ref $a;
</code></pre>
<blockquote>
<p>mytype</p>
</blockquote>
<p>How can I get the type?</p>
http://stackoverflow.com/questions/170352/confluence-experiences/992491#9924911Answer by niXar for confluence experiences?niXar2009-06-14T09:12:27Z2009-06-14T09:12:27Z<p>I do not like Confluence. I've had to use it for almost a year, and it's been quite annoying. I'm a seasoned wikipedian, and I've used many wiki syntax. I don't like Confluence's; this is subjective, but here are few points:</p>
<ul>
<li>Tables suck. The syntax is good for very small ones, but large ones are unmanageable. </li>
<li>They enable smileys by default. How enterprisey. Say you have a list of MACs in your wiki; every instance of :D will be replaced by ☺ -- enterprisey!</li>
<li>The doc on it is bad. </li>
<li>There is no Mediawiki style parameterized templates; weeell, there is ("macros" or something), but for some reason I can't understand, they have to be installed by the "admin." So they're basically useless. </li>
</ul>
<p>The main "enterprisey" feature of Confluence is its ACL (access control lists). They're a pain to use (it might have improved in the very latest version): a page inherits its parent permissions. But if you just want to add one user/group to the list of authorized viewers for one page, well, you can't. You have to manually specify all the groups/users again, plus the additional one.</p>
<p>It's also quite slow. It pops up whole windows for minor things like picking smileys instead of displaying it inline. Many features involving search, such as listing groups/users, display them in 10 items per page format. That's so retarded it hurts. We have, what, 2000 users, and 4GB of RAM → SEND ME THE WHOLE LIST, I can handle it. But nooooo, you have to click click click. Or rather, click wait click wait.</p>
<p>It also lacks a very useful Mediawiki feature: you can't just edit parts of a page, you have to load the whole page; and of course, you are sent back to the beginning. So if you have a long page, every edit/preview cycle is simply unbearable. Mediawiki and some other wikis add an [edit] button to the right of headings.</p>
<p>On the whole the UI is very quirky. I found Trac to be much more productive as far as Wikis are concerned. Of course its bug tracking feature is nowhere near Jira; but it's free and it's fast. In my opinion, don't switch if you don't <em>really</em> need to.</p>
http://stackoverflow.com/questions/909798/how-to-know-if-a-process-had-been-started-but-crashed-in-linux/909851#9098510Answer by niXar for How to know if a process had been started but crashed in LinuxniXar2009-05-26T09:43:42Z2009-05-26T09:43:42Z<p>I don't know of a standard way of getting all the process names that have executed; there might be a way however to do this with <a href="http://sourceware.org/systemtap/" rel="nofollow">SystemTap</a>.</p>
<p>If you just want to monitor your process, I would recommend using waitid (man 2 wait) after the fork instead of detaching and daemonizing. </p>
http://stackoverflow.com/questions/909189/simulating-file-descriptor-in-user-space/909826#9098260Answer by niXar for Simulating file descriptor in user spaceniXar2009-05-26T09:36:16Z2009-05-26T09:36:16Z<p>It's really not clear what you're trying to do; if you want a socket-like device, why not use sockets? You don't say ... And what's the deal with POLLIN and POLLOUT? </p>
<p>I kinda suspect you might be interested in using pseudo-terminal devices, see man 7 pty.</p>
http://stackoverflow.com/questions/406155/in-place-editing-version-control-whats-your-solution/407098#4070980Answer by niXar for In-place editing, version control - what's your solution?niXar2009-01-02T15:27:55Z2009-01-02T15:27:55Z<p>You need to realize that SVN repositories are free. You can create as many as you want. </p>
<p>You also need to realize that you don't have to check out a whole repository. You said:</p>
<blockquote>
<p>It also doesn't seem reasonable to
have a working copy of the repository
wherever there are files to put under
SVN control</p>
</blockquote>
<p>I'm not sure what you're really trying to do, but I'm under the impression that you use SVN in a peculiar way. </p>
http://stackoverflow.com/questions/395088/how-to-programmatically-capture-a-web-page-with-forced-updates/395143#3951432Answer by niXar for How to programmatically capture a web page with forced updates.niXar2008-12-27T16:42:20Z2008-12-27T16:42:20Z<p>Install Firefox and <a href="http://www.greasespot.net/" rel="nofollow">GreaseMonkey</a>. Have the GM script add DOM events where appropriate to track modifications. You can then use XMLHttpRequest to send the information to a server, or write them to local files with XPCOM <a href="https://developer.mozilla.org/index.php?title=En/Code_snippets/File_I%2F%2FO" rel="nofollow">file IO opearation</a>.</p>
<p>With this, you can do what you want in a dozen lines and little to no reverse engineering, whereas what others have advised (screen scraping) will require thousands of lines of code for a JavaScript heavy site IMO. </p>
<p>Addenda: this is /not/ a job for C++. And should you do it in C++ anyway, you will end up havin to reverse engineer JS, so you might as well just learn enough JS to use GreaseMonkey in the first place.</p>
http://stackoverflow.com/questions/372202/why-in-javascript-is-a-function-considered-both-a-constructor-and-an-object/372264#3722648Answer by niXar for Why in JavaScript is a function considered both a constructor and an object?niXar2008-12-16T18:47:58Z2008-12-16T18:47:58Z<p>Your understanding is wrong:</p>
<pre><code>myFunction().myProperty; // myFunction has no properties
</code></pre>
<p>The reason it does not work is because ".myProperty" is applied to the returned value of "myFunction()", not to the object "myFunction". To wit:</p>
<pre><code>$ js
js> function a() { this.b=1;return {b: 2};}
js> a().b
2
js>
</code></pre>
<p>Remember, "()" is an operator. "myFunction" is not the same as "myFunction()". You don't need a "return" when instanciang with new:</p>
<pre><code>js> function a() { this.b=1;}
js> d = new a();
[object Object]
js> d.b;
1
</code></pre>
http://stackoverflow.com/questions/359321/mysql-query-optimization/359471#3594710Answer by niXar for Mysql Query OptimizationniXar2008-12-11T14:10:50Z2008-12-11T14:10:50Z<p>What do you mean by "killing your application"? What is the context? How often do you run this query? What is going on on the database while you're running this query? Does this particular result have to be real-time? What are the conditions (inserts / s, selects / s, db size, etc)</p>
<p>Here's what you could do:</p>
<ol>
<li><p>Store the count in a separate table, which you'd update with triggers on insert/delete</p></li>
<li><p>If you can't coerce MySQL into doing this with a simple table swipe with some magic, try a stored procedure to do something like (pseudo code):</p>
<pre><code>CREATE TEMP TABLE t (e1 EXP_T, op OP_T, e2 EXP_T, count INTEGER)
ADD AN INDEX ON count
FOR EACH LINE OF SELECT exp1,operator,exp2 FROM log_blah DO
UPDATE t SET count=count+1 WHERE exp1=e1 AND operator=op AND exp2=e2
IF IT DOES NOT WORK INSERT INTO t VALUES (exp1,operator,exp2,1)
DONE
SELECT * FROM t ORDER BY count DESC LIMIT 2000
</code></pre></li>
</ol>
<p>1 is probably what you want. And forget indices, this query has to swipe the whole table anyway. </p>
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/325844#32584411Answer by niXar for What is your best programmer joke?niXar2008-11-28T14:09:26Z2008-11-28T14:09:26Z<p>There are two types of people in this world: those who understand recursion and those who don't understand that there are two types of people in this world: ...</p>
http://stackoverflow.com/questions/145540/best-way-to-sandbox-apache-on-linux/258785#2587850Answer by niXar for Best way to sandbox Apache on LinuxniXar2008-11-03T14:31:50Z2008-11-03T14:31:50Z<p>You should use SELinux. I don't know how well it's supported on Debian; if it's not, just install a Centos 5.2 with SELinux enabled in a VM. Shouldn't be too much work, and much much safer than any amateur chrooting, which is not as safe as most people believe.
SELinux has a reputation for being difficult to admin, but if you're just running a webserver, that shouldn't be an issue. You might just have to do a few "sebool" to let httpd connect to the DB, but that's about it.</p>
http://stackoverflow.com/questions/4689/recommended-fonts-for-programming/258236#2582360Answer by niXar for Recommended Fonts for Programming?niXar2008-11-03T09:48:04Z2008-11-03T09:48:04Z<p>Nobody's mentioned it yet, so let me just mention <a href="http://dejavu.sourceforge.net/wiki/index.php/Main_Page" rel="nofollow">DejaVu Sans Mono</a>, which is a fork of Vera Sans Mono, and is included in most Linux distribs. It supports most of Unicode.</p>
http://stackoverflow.com/questions/250582/which-language-for-a-quick-gui-app-sqlite-database-crud-2-4-tables/250649#2506491Answer by niXar for Which language for a quick GUI app + sqlite database CRUD (2-4 tables)niXar2008-10-30T15:39:42Z2008-10-30T15:39:42Z<p>Write a XulRunner app; this can run with Firefox 3.0. </p>
<p><a href="http://developer.mozilla.org" rel="nofollow">http://developer.mozilla.org</a></p>
http://stackoverflow.com/questions/152514/how-to-rename-all-folders-and-files-to-lowercase-on-linux/152836#1528361Answer by niXar for How to rename all folders and files to lowercase on Linux?niXar2008-09-30T12:34:13Z2008-09-30T12:34:13Z<p>Most of the answers above are dangerous because they do not deal with names containing odd characters. Your safest bet for this kind of thing is to use find's -print0 option, which will terminate filenames with ascii NUL instead of \n. Here I submit this script, which only alter files and not directory names so as not to confuse find. </p>
<pre><code>find . -type f -print0 | xargs -0n 1 bash -c \
's=$(dirname "$0")/$(basename "$0");
d=$(dirname "$0")/$(basename "$0"|tr "[A-Z]" "[a-z]"); mv -f "$s" "$d"'
</code></pre>
<p>I tested it and it works with filenames containing spaces, all kinds of quotes, etc. This is important because if you run, as root, one of those other script on a tree that includes the file created by:</p>
<pre><code>touch \;\ echo\ hacker::0:0:hacker:\$\'\057\'root:\$\'\057\'bin\$\'\057\'bash
</code></pre>
<p>... well guess what ...</p>
http://stackoverflow.com/questions/114207/reinitialize-system-wide-environment-variable-in-linux/115760#1157600Answer by niXar for reinitialize system wide environment variable in linuxniXar2008-09-22T16:03:18Z2008-09-22T16:03:18Z<p>You can use <a href="http://httpd.apache.org/docs/2.2/mod/mod_env.html#setenv" rel="nofollow">SetEnv</a> in your config files (/etc/httpd/conf.d/*.conf, .htaccess ...). Additionally you should be able to define them in /etc/sysconfig/httpd (on RPM-based distribs) and <em>export</em> them (note: not tested).</p>
<p>Note: it wouldn't surprise me if some distributions tried quite hard to hide as much as possible, as far as system config is concerned, from a publically accessible service such as Apache. And if they don't, they might start doing this in a future version. Hence I advise you to do this explicitly. If you need to share such a setting between Apache and your shells, you could try sourcing <em>/etc/profile.d/yourprofile.sh</em> from <em>/etc/sysconfig/httpd</em></p>
http://stackoverflow.com/questions/114525/the-difference-between-the-two-functions/114579#114579-1Answer by niXar for The difference between the two functionsniXar2008-09-22T12:33:52Z2008-09-22T12:33:52Z<p>They mean the exact same thing. It's just syntactic sugar. The latter is IMO more revealing of what JavaScript is really doing; i.e. "sum" is just a variable, initialised with a function object, which can then be replaced by something else:</p>
<pre><code>$ js
js> function sum(x,y) { return x+y; }
js> sum(1,2);
3
js> sum=3
3
js> sum(1,2);
typein:4: TypeError: sum is not a function
js> sum
3
</code></pre>
http://stackoverflow.com/questions/114204/how-do-i-read-write-as-the-authenticated-user-with-apache-webdav/114275#1142752Answer by niXar for How do I read/write as the authenticated user with Apache/WebDAV?niXar2008-09-22T11:07:54Z2008-09-22T11:07:54Z<p>Shot answer, and as far as I know: you don't.</p>
<p>Long answer: it is possible to implement such a feature with an appropriate mpm, and there were <a href="http://httpd.apache.org/docs/2.0/mod/perchild.html" rel="nofollow">various</a> <a href="http://www.telana.com/peruser.php" rel="nofollow">attempts</a> to do so, but they don't seem to be very actively supported, and are at least not in the mainline Apache codebase. </p>
<p>peruser:</p>
<blockquote>
<p>Q. Is peruser ready for production use?</p>
<p>A. In general, no.</p>
</blockquote>
<p>perchild:</p>
<blockquote>
<p>This module is not functional. Development of this module is not complete and is not currently active. Do not use perchild unless you are a programmer willing to help fix it. </p>
</blockquote>
<p>That's too bad, really; most uses of WebDav I've seen store ownership information at the application layer, in the database, anyway. The consensus for doing file sharing is to use Samba instead; and that's not really a solution, I admit.</p>
http://stackoverflow.com/questions/114007/free-supportticket-software/114037#1140371Answer by niXar for Free supportticket softwareniXar2008-09-22T09:48:00Z2008-09-22T09:48:00Z<p><a href="http://otrs.org" rel="nofollow">OTRS</a> is Perl-based, well-supported. <a href="http://bestpractical.com/rt/" rel="nofollow">RT</a> is old. <a href="http://www.bugzilla.org" rel="nofollow">Bugzilla</a> is very powerful. <a href="http://trac.edgewall.org" rel="nofollow">Trac</a> also includings tickets, but probably not advanced enough for what you want.</p>
<p>See <a href="http://en.wikipedia.org/wiki/Category:Bug_and_issue_tracking_software" rel="nofollow">this WP category</a> for more</p>
<p>You probably want to be more specific in your request.</p>
http://stackoverflow.com/questions/111763/where-can-i-learn-about-proven-methods-for-sharing-cryptographic-keys/111982#1119820Answer by niXar for Where can I learn about proven methods for sharing cryptographic keys?niXar2008-09-21T20:22:54Z2008-09-21T21:30:54Z<p>This is easy to implement with <a href="http://en.wikipedia.org/wiki/Error-correcting_codes" rel="nofollow">error-correcting codes</a>. You could use a command-line tool such as <em>par2</em> (which is not exactly appropriate for this specific purpose btw, as it generates recovery blocks of varying size). Let's say you have (n+m) voters, and want a quorum of n votes. You generate n private keys K₁∘, K₂, ... Kn, and generate m additionnal ECC blocks Pₓ of the same size. That way any n blocks suffice to reconstitute the cipher K₁∘K₂∘...∘Kn</p>
http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/193912#193912Comment by niXar on What's the most egregious pop culture perversion of programming?niXar2009-07-27T15:28:54Z2009-07-27T15:28:54Z«The idea that governments and financial institutions don't audit their code to prevent the presence of back doors and the like in their software» -- I'm dealing with code from financial institutions and they wouldn't find a backdoor if it hit them in the jaws and knocked all their teeth off. http://stackoverflow.com/questions/1176294/foreach-loop-in-c-c/1176301#1176301Comment by niXar on foreach loop in c/c++??niXar2009-07-24T08:18:08Z2009-07-24T08:18:08ZIt's not just convenience. It has a very interesting property, one that is used in functional languages: the work load can be cut into pieces and sent to various threads to take advantage of parallel processing, as long as the work to be done has not side-effects.
Actually for that purpose functions such as "map," "reduce," and "filter" are more appropriate but it's the same principle. http://stackoverflow.com/questions/1171376/matrix-transposition-in-xsltComment by niXar on Matrix transposition in XSLTniXar2009-07-23T12:44:38Z2009-07-23T12:44:38Zvariable number of cells in a col. Platform is XSLT 1.0 with EXSLT (Xalan-C or Gnome's libxslt)http://stackoverflow.com/questions/522286/weird-constants/522360#522360Comment by niXar on Weird constantsniXar2009-06-27T20:38:03Z2009-06-27T20:38:03ZLet's say you forgot the quotes; this is clearly something added by a script. CVS/RCS had something like that, you can see it sometimes, when you put $Version$ in a file, it gets replaced with the version number on commit.
It's not used by the code, but it's written to the class files and might be used by exception or debugging code to generate stack trace with version info.http://stackoverflow.com/questions/891643/twitter-image-encoding-challenge/930573#930573Comment by niXar on Twitter image encoding challengeniXar2009-06-26T16:21:37Z2009-06-26T16:21:37ZI know, I was being sarcastic. http://stackoverflow.com/questions/211378/hidden-features-of-bash/213947#213947Comment by niXar on Hidden features of BashniXar2009-06-22T10:18:16Z2009-06-22T10:18:16Zssh machine2 "cat > file1" < file1http://stackoverflow.com/questions/891643/twitter-image-encoding-challenge/930573#930573Comment by niXar on Twitter image encoding challengeniXar2009-06-19T16:29:36Z2009-06-19T16:29:36ZEven better than SHA1 compression: my "flickr" compression algorithm! Step 1: upload image to flickr. Step 2: post a link to it on twitter. Tadda! Only 15 bytes uses!http://stackoverflow.com/questions/973324/how-do-i-get-the-type-of-a-blessed-ref-arrayhashscalar/973397#973397Comment by niXar on How do I get the type of a blessed ref? (ARRAY|HASH|SCALAR)niXar2009-06-14T09:17:40Z2009-06-14T09:17:40ZI know what I'm doing; namely, implementing something akin to Data::Dumper but into a specific format.http://stackoverflow.com/questions/170352/confluence-experiences/170438#170438Comment by niXar on confluence experiences?niXar2009-06-14T08:56:26Z2009-06-14T08:56:26ZGah, Confluence's wiki syntax isn't great. Well, at least <i>I</i> don't like it, but that's just me (tables suck very much indeed). But the main problem is that its documentation <i>sucks</i>. http://stackoverflow.com/questions/915810/is-xml-or-xul-the-future-of-java-gui-building/915909#915909Comment by niXar on Is XML or XUL the future of Java GUI building?niXar2009-05-27T14:11:33Z2009-05-27T14:11:33ZYou should learn more about XUL. It's never used alone, obviously; it's scripted with JavaScript (or, in the case of Miro, Python). Try it. It's really awesome.http://stackoverflow.com/questions/891643/twitter-image-encoding-challenge/904874#904874Comment by niXar on Twitter image encoding challengeniXar2009-05-26T14:26:33Z2009-05-26T14:26:33ZThis looks really nice, but I'm very disappointed. img2twit? Really? REALLY? That's all you could come up with? What happened to your literary, poetic genius? I was expecting something to perpetuate the great lineage of libcaca, libcucul, libpipi and toilet.
(How about 'pcul,' picture compression utility for line-blogging?)http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/193705#193705Comment by niXar on What is the best comment in source code you have ever encountered?niXar2009-05-21T15:58:13Z2009-05-21T15:58:13ZIt simply can't be true. But it's hilarious that so many people believe an unsourced claim that ridiculous.http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/434209#434209Comment by niXar on Significant new inventions in computing since 1980niXar2009-02-03T18:40:16Z2009-02-03T18:40:16ZOh dear. I don't know what "Declarative programming" is, but I guess Prolog and ML fit the bill ‹check WP› yup it does. http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/445809#445809Comment by niXar on Significant new inventions in computing since 1980niXar2009-02-03T18:34:18Z2009-02-03T18:34:18ZSorry I had to -1 you, but you're so wrong it's not even funny. Have you heard of Wikipedia? You might consider looking stuff up there before posting: <a href="http://en.wikipedia.org/wiki/Object-oriented_programming" rel="nofollow">en.wikipedia.org/wiki/Object-oriented_programming/…</a>http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/432971#432971Comment by niXar on Significant new inventions in computing since 1980niXar2009-02-03T18:24:37Z2009-02-03T18:24:37Z@RussellH: you're confusing "Open Source" and "Free (as in Freedom) Software". Your comment, in fact, illustrates precisely why the distinction is important. But anyway, Firefox is better than Internet Explorer and Safari, and it's more important to users than Windows vs MacOS vs Linux.