User Anders Eurenius - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T12:58:19Zhttp://stackoverflow.com/feeds/user/1421http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1449817/what-are-some-of-the-most-useful-regular-expressions-for-programmers/1449844#14498441Answer by Anders Eurenius for What are some of the most useful regular expressions for programmers?Anders Eurenius2009-09-19T23:54:58Z2009-09-19T23:54:58Z<p>Upto closing tag</p>
<pre><code>([^<]*)
</code></pre>
<p>Seriously. I use combinations of that <em>way</em> too often for comfort... We should all ditch regex:en for peg-parsers, especially since there's a nice regex-like grammar style for them.</p>
http://stackoverflow.com/questions/12328/what-bug-tracking-software-do-you-use/12431#1243143Answer by Anders Eurenius for What bug tracking software do you use?Anders Eurenius2008-08-15T16:11:06Z2009-08-31T07:31:58Z<h2>In defence of <a href="http://trac.edgewall.org/" rel="nofollow">Trac</a>...</h2>
<p>Check out the huge plugin community at <a href="http://trac.edgewall.org/wiki/PluginList" rel="nofollow">edgewall</a> and <a href="http://trac-hacks.org/" rel="nofollow">trac-hacks.org</a>. It seems that a lot of development happens at trac-hacks and some of it is folded into the mainline, but most isn't.</p>
<ul>
<li>tickets
<ul>
<li><em>"flat list of components.."</em> Maybe, but can use tags and custom fields quite freely.</li>
<li>you <em>can</em> write SQL in order to do interesting queries for tickets. (Yes, someone might need to think a bit here.)</li>
<li>nowadays, at least, you can just add whatever fields you like. I think trac is a bit promiscuous with its DB, but it seems to work.</li>
</ul></li>
<li>wiki
<ul>
<li><em>"no templates, categories."</em> This is on the way. (0.11?)</li>
<li><em>"hard to refactor</em>". Renaming, TOC, include, [...] are available as plugins.</li>
<li><em>"no way to easily review changes (no link to the page diff from the timeline)"</em>. Hadn't thought of that, but apparently someone else has to. It seems to have it now...</li>
</ul></li>
<li>common
<ul>
<li>"<em>no ACL</em>". No ACL on the wiki beyond WIKI_ADMIN and friends. Also on its way.</li>
</ul></li>
</ul>
<p><em>I had positive experience with using bugzilla, although it has quite scary interface.</em></p>
<p>I had a very negative experience with bugzilla, primarily because of the <em>unusable</em> interface..</p>
<p><hr /></p>
<p>That said, I think the size, skill-level and discipline of your group are very important factors..</p>
<p>Trac is great for smaller groups of higher skills, that can appreciate stuff like linking file+version+line in tickets, tickets in checkins, &c, &c.</p>
<p>It's probably horribly bad for groups where the lack of ACL on wiki pages is a problem.</p>
http://stackoverflow.com/questions/1217880/best-c-debugger-for-linux/1217909#121790911Answer by Anders Eurenius for Best C++ Debugger For LinuxAnders Eurenius2009-08-02T00:57:08Z2009-08-02T00:57:08Z<h2><a href="http://www.gnu.org/software/ddd/" rel="nofollow">Data Display Debugger</a></h2>
<p>It's a frontend for gdb, I suppose gdb is <em>usable</em> without it, but graphing those pointer swamps is really great.</p>
http://stackoverflow.com/questions/1203451/how-to-write-an-application-for-the-system-tray-in-linux/1203482#12034826Answer by Anders Eurenius for How to write an application for the system tray in LinuxAnders Eurenius2009-07-29T22:38:30Z2009-07-29T22:38:30Z<h1>python-eggtrayicon</h1>
<p>here's the example that comes with the debian package <code>python-eggtrayicon</code> in debian/testing...</p>
<pre><code>#!/usr/bin/python
import pygtk
pygtk.require("2.0")
import gtk
import egg.trayicon
t = egg.trayicon.TrayIcon("MyFirstTrayIcon")
t.add(gtk.Label("Hello"))
t.show_all()
gtk.main()
</code></pre>
<p>It just shows a label in the notification area . (Search on that, and you'll probably get <em>much</em> better hits...)</p>
http://stackoverflow.com/questions/1175673/help-on-language-choice/1177453#11774531Answer by Anders Eurenius for Help on language choiceAnders Eurenius2009-07-24T12:50:20Z2009-07-24T12:50:20Z<h2><a href="http://www.python.org/" rel="nofollow">Python</a></h2>
<ul>
<li>Since it's quite unlikely you will ever encounter data volumes where it makes a difference (and if so, I/O, not code is probably the bottleneck.) you should get a language that is as pleasant to develop in as possible.</li>
<li>Python has nice, standardized db libs, start with <a href="http://sqlite.org/" rel="nofollow">sqlite3</a>, since the db just lives in a file. If you need to, you can swap it for an oracle db later.</li>
<li>It also has a number of GUI options, so having the discipline to keep the GUI separate is easier. (you should anyway, but...)</li>
<li>Very good multiplatform support, even some of the GUI alternatives manage this. (Some better than others, though)</li>
</ul>
<p>Python is also friendly, in that doing the wrong thing <em>feels</em> wrong, and doing the right thing <em>feels</em> right. I can't even begin to explain the wonders of that feature.</p>
http://stackoverflow.com/questions/977474/programming-language-properties-that-facilitate-refactoring/992872#9928720Answer by Anders Eurenius for Programming Language Properties that facilitate refactoring?Anders Eurenius2009-06-14T13:56:49Z2009-06-14T13:56:49Z<h1>For refactoring: self-similarity</h1>
<p>The ability to accept code transplants without intrusive alteration or bizarre reinterpretation. Examples:</p>
<ul>
<li>Extract a snippet of C++ to a new procedure, by using reference parameters to give it modifing access to variables.</li>
<li>Python, Javascript and Lua methods really are just functions that have a 'self' parameter. *</li>
<li>In any number of languages, a function that creates/populates a struct can be (more or less trivially) converted to a constructor.</li>
</ul>
<p>Counterexamples...</p>
<ul>
<li>Ruby (modules, classes), methods lambda block and raw blocks: The differences in semantics are bewildering to say the least. (which is all I feel qualified to say for sure.)</li>
</ul>
<p>For the (to my mind) wildly different case of automatic mangling I'm a lot less sure, but the freedom from side-effects offered by functional programming languages is really it. (Ok, so how could we offer the same thing in a language for the rest of us?)</p>
<p><code>*</code> Python is <em>almost</em> like that. (I forgot what the gotcha is. Probably something to with if method was defined in class or grafted on, runtime.)</p>
http://stackoverflow.com/questions/949098/python-split-a-list-based-on-a-condition/950207#9502070Answer by Anders Eurenius for Python: split a list based on a condition?Anders Eurenius2009-06-04T12:25:01Z2009-06-04T12:25:01Z<p>If you insist on clever, you could take Winden's solution and just a bit spurious cleverness:</p>
<pre><code>def splay(l, f, d=None):
d = d or {}
for x in l: d.setdefault(f(x), []).append(x)
return d
</code></pre>
http://stackoverflow.com/questions/201615/syslog-output-for-log4r-example/887063#8870630Answer by Anders Eurenius for syslog output for log4r exampleAnders Eurenius2009-05-20T09:37:03Z2009-05-20T09:37:03Z<p>I found this very helpful, but I had to make further edits. Something tried to re-open the syslog, causing an unhandled RuntimeError. I fixed it with this axe-crazy override in environments/production.rb:</p>
<pre><code>require 'rubygems'
require 'log4r'
require 'log4r/outputter/syslogoutputter'
# The outputter needs some love to avoid attempts to reopen syslog. Most of this is cargo-culted from source.
class Log4r::SyslogOutputter
def initialize(_name, hash={})
super(_name, hash)
ident = (hash[:ident] or hash['ident'] or _name)
logopt = (hash[:logopt] or hash['logopt'] or LOG_PID | LOG_CONS).to_i
facility = (hash[:facility] or hash['facility'] or LOG_USER).to_i
if Syslog.opened? then
@syslog = Syslog
else
@syslog = Syslog.open(ident, logopt, facility)
end
end
end
RAILS_DEFAULT_LOGGER = Log4r::Logger.new 'mylog'
config.logger = RAILS_DEFAULT_LOGGER
config.logger.outputters = Log4r::SyslogOutputter.new("f1", :ident=>"RoR")
config.logger.info "Starting up."
</code></pre>
<p>There's probably a much prettier way of doing it, but this would seem to do it for me.</p>
http://stackoverflow.com/questions/144568/learn-c-from-open-source-code/144821#1448213Answer by Anders Eurenius for Learn C from Open Source codeAnders Eurenius2008-09-28T00:12:11Z2009-04-29T18:34:23Z<p>I'd recommend getting a good, recommended textbook. Really, a lot of code you'll see looking at open source projects will be</p>
<ul>
<li>crap (ok, it tends to work, which is where the bar is set, but it isn't good study material.)</li>
<li>irrelevant. (the good old "textbook example" is precisely that for a reason.)</li>
</ul>
<p>Also, I definitely feel that "knowing", mastering C means more than to able to use it for the most mundane tasks. (Ok, show of hands: How many of you knew that malloc is <em>guaranteed</em> to return an address divisible by four?) I might not even have used the bitfield feature as often as once a year, but I don't think it would be right to say you know the language if you don't know them.</p>
<p>Another very important thing is to learn the debugging tools. Fortunately, C has a large set of very nice tools:</p>
<ul>
<li><a href="http://www.gnu.org/software/ddd/" rel="nofollow">DDD, The Data Display Debugger</a></li>
<li><a href="http://valgrind.org/" rel="nofollow">Valgrind</a></li>
<li><a href="http://www.cs.utah.edu/dept/old/texinfo/as/gprof%5Ftoc.html" rel="nofollow">gprof</a> (profiler)</li>
</ul>
<p>You'll definitely want to tool up to code C effectively. You'll want to know what's fast and what's slow. There is no way to <code>catch</code>, and, oh, yes: <em>You're</em> the memory management.</p>
http://stackoverflow.com/questions/553928/slicing-a-nurbs-surface/558735#5587351Answer by Anders Eurenius for Slicing a NURBS surfaceAnders Eurenius2009-02-17T21:10:22Z2009-02-17T21:10:22Z<p>Well.. The R in 'NURBS' is for rational. It's a division of two polynoms. Your (axis-aligned) plane gives you a very simple fun set of points, (x,y,z) such that z is the given z. Solve. Not very helpful perhaps. Is <a href="http://www.risc.uni-linz.ac.at/projects/basic/cgal/workdone/nurbs-97-30.ps.gz" rel="nofollow">this</a> more like what you had in mind? </p>
http://stackoverflow.com/questions/505968/in-ubuntu-intrepid-what-keypress-will-take-me-to-tty13/524808#5248081Answer by Anders Eurenius for In Ubuntu Intrepid, what keypress will take me to tty13?Anders Eurenius2009-02-07T23:26:46Z2009-02-07T23:26:46Z<p>There's a nice program called chvt that takes you to another virtual console. (e.g. 'sudo chvt 1' would pop me right out of X, right now.) It's a bit obnoxious in that X drivers don't always like vt-switching. On the other hand, it's saved me more than once when X has gotten wedged. You might also want to look at a program called "open" which opens a new virtual terminal.</p>
<p>...But if your problem is really that you want more terminals, what I'd really recommend is to look into <a href="http://www.gnu.org/software/screen/" rel="nofollow">screen</a>. It does all kinds of nifty things. Like being able to ssh in and connect to the same session you worked on locally, in what I think of as "multiplayer".. (well, you can be attached to the same (backend-) session from multiple frontends.) It kicks ass. I use it every day at work, where I have a very long-running session on one of the anarchic dev-servers.</p>
<p>As for your actual reported problem, well.. hmm.. how's your keyboard configured? Does it work with some more 'popular' keymap?</p>
http://stackoverflow.com/questions/524342/how-to-store-a-hash-table-in-a-file/524787#5247872Answer by Anders Eurenius for How to store a hash table in a file?Anders Eurenius2009-02-07T23:09:51Z2009-02-07T23:09:51Z<h1>Ditch the pointers for indices.</h1>
<p>This is a bit similar to constructing an on-disk <a href="http://en.wikipedia.org/wiki/DAWG" rel="nofollow">DAWG</a>, which I did a while back. What made that so very sweet was that it could be loaded directly with mmap instead reading the file. If the hash-space is manageable, say 2<sup>16</sup> or 2<sup>24</sup> entries, then I think I would do something like this:</p>
<ul>
<li>Keep a list of free indices. (if the table is empty, each chain-index would point at the next index.)</li>
<li>When chaining is needed use the free space in the table.</li>
<li>If you need to put something in an index that's occupied by a squatter (overflow from elsewhere) :
<ul>
<li>record the index (let's call it N)</li>
<li>swap the new element and the squatter</li>
<li>put the squatter in a new free index, (F).</li>
<li>follow the chain on the squatter's hash index, to replace N with F.</li>
</ul></li>
<li>If you completely run out of free indices, you probably need a bigger table, but you can cope a little longer by using mremap to create extra room after the table.</li>
</ul>
<p>This should allow you to mmap and use the table directly, without modification. (scary fast if in the OS cache!) but you have to work with indices instead of pointers. It's pretty spooky to have megabytes available in syscall-round-trip-time, and still have it take up less than that in physical memory, because of paging.</p>
http://stackoverflow.com/questions/393307/projecting-a-3d-sphere-into-a-2d-circle-on-the-screen/393329#3933291Answer by Anders Eurenius for Projecting a 3d sphere into a 2d circle on the screenAnders Eurenius2008-12-26T00:35:26Z2008-12-26T00:35:26Z<p>What projection do you have?</p>
<p>I'm quite sure the projection isn't a circle in the most interesting ones. Hm. I guess the way I would do it would be to find the circumference circle in 3d whose axis* is aligned to the camera point. Pick whatever points needed from the circle and then transform them to screen space. Most simply, that would give you a polygon, but interpolated splines should probably also give you nice results.</p>
<p>*: axis of rotational symmetry</p>
http://stackoverflow.com/questions/384038/terminology-used-for-language-and-culture-aware-software/384251#3842511Answer by Anders Eurenius for Terminology used for language and culture-aware softwareAnders Eurenius2008-12-21T08:24:55Z2008-12-21T08:24:55Z<p>AFAIK, a technical interpretation of i18n and l10n is that i18n is the refactoring to use hooks to get the l10n for the particular locale. (So i18n is the process of plugging in gettext and peppering the code with those _() macros and l10n is the actual translating.)</p>
<p><a href="http://en.wikipedia.org/wiki/I18n" rel="nofollow">Wikipedia</a> has i18n and l10n coming from DEC, back-in-the-day, while globalization/g11n is new from microsoft+ibm.</p>
http://stackoverflow.com/questions/381300/how-can-i-read-an-xml-file-into-a-buffer-in-c/384245#3842450Answer by Anders Eurenius for How can I read an XML file into a buffer in C?Anders Eurenius2008-12-21T08:12:20Z2008-12-21T08:12:20Z<h1>Suggestion: Use memory mapping</h1>
<p>This has the potential to cut down on useless copying of the data. The trick is to ask the OS for what you want, instead of doing it. Here's an implementation I made earlier:</p>
<h2>mmap.h</h2>
<pre><code>#ifndef MMAP_H
#define MMAP_H
#include <sys/types.h>
struct region_t {
void *head;
off_t size;
};
#define OUT_OF_BOUNDS(reg, p) \
(((void *)(p) < (reg)->head) || ((void *)(p) >= ((reg)->head)+(reg)->size))
#define REG_SHOW(reg) \
printf("h: %p, s: %ld (e: %p)\n", reg->head, reg->size, reg->head+reg->size);
struct region_t *do_mmap(const char *fn);
#endif
</code></pre>
<h2>mmap.c</h2>
<pre><code>#include <stdlib.h>
#include <sys/types.h> /* open lseek */
#include <sys/stat.h> /* open */
#include <fcntl.h> /* open */
#include <unistd.h> /* lseek */
#include <sys/mman.h> /* mmap */
#include "mmap.h"
struct region_t *do_mmap(const char *fn)
{
struct region_t *R = calloc(1, sizeof(struct region_t));
if(R != NULL) {
int fd;
fd = open(fn, O_RDONLY);
if(fd != -1) {
R->size = lseek(fd, 0, SEEK_END);
if(R->size != -1) {
R->head = mmap(NULL, R->size, PROT_READ, MAP_PRIVATE, fd, 0);
if(R->head) {
close(fd); /* don't need file-destructor anymore. */
return R;
}
/* no clean up of borked (mmap,) */
}
close(fd); /* clean up of borked (lseek, mmap,) */
}
free(R); /* clean up of borked (open, lseek, mmap,) */
}
return NULL;
}
</code></pre>
http://stackoverflow.com/questions/256625/when-to-use-closure/256643#2566430Answer by Anders Eurenius for When to use closure?Anders Eurenius2008-11-02T07:58:52Z2008-11-02T07:58:52Z<p>In Lua and Python it's a very natural thing to do when "just coding", because the moment you reference something that's not a parameter, you're making a closure. (so most of these will be quite dull as examples.)</p>
<p>As for a concrete case, imagine an undo/redo system, where the steps are pairs of (undo(), redo()) closures. The more cumbersome ways of doing that might be to either: (a) Make unredoable classes have a special method with universally dorky arguments, or (b) subclass UnReDoOperation umpteen times.</p>
<p>Another concrete example is infinite lists: Instead of working with genericized containers, you frob a function that retrieves the next element. (this is part of the power of iterators.) In this case you can either keep just little bit of state (the next integer, for the list-of-all-nonnegative-integers or similar) or a reference to a position in an actual container. Either way, it's a function that references something that is outside itself. (in the infinite-list case, the state variables must be closure variables, because otherwise they'd be clean for every call)</p>
http://stackoverflow.com/questions/227994/sql-stored-procedure-temporary-table-memory-problem/228052#2280520Answer by Anders Eurenius for SQL stored procedure temporary table memory problemAnders Eurenius2008-10-23T00:36:30Z2008-10-23T00:36:30Z<p>You probably want to process this piecewise in some way. (I assume queries are a lot more complicated that you showed?) In that case, you'd want try one of these:</p>
<ul>
<li>Write your stored procedure to iterate over results. (Might still lock while processing.)</li>
<li>Repeatedly select the N first hits, eg <code>LIMIT 100</code> and process those.</li>
<li>Divide work by scanning regions of the table separately, using something like WHERE M <= x AND x < N.</li>
<li>Run the "midnight job" more often. Seriously, running stuff like this every 5 mins instead can work wonders, especially if work increases non-linearly. (If not, you could still just get the work spread out over the hours of the day.)</li>
</ul>
<p>In Postgres, I've had some success using conditional indices. They work magic by applying an index if certain conditions are met. This means that you can keep the many 'resolved' and the few unresolved rows in the same table, but still get that special index over just the unresolved ones. Ymmv.</p>
<p>Should be pointed out that this is where using databases gets <em>interesting</em>. You need to pay close attention to your indices and use <code>EXPLAIN</code> on your queries a lot.</p>
<p>(Oh, and remember, <em>interesting</em> is a good thing in your hobbies, but not at work.)</p>
http://stackoverflow.com/questions/52676/favorite-windows-keyboard-shortcuts/221342#2213420Answer by Anders Eurenius for Favorite Windows keyboard shortcutsAnders Eurenius2008-10-21T09:56:24Z2008-10-21T09:56:24Z<p>It's not a keyboard shortcut, but my favourite trick is to bind the large thumb button on the rat to move window, the smaller thumb button to resize. That way, windows can be moved and resized very easily and naturally. You can probably to that in windows too.</p>
<p>As for <em>keyboard</em> tricks, I use right ctrl+keypad to pick (one of nine) virtual screens. Very quick and natural.</p>
http://stackoverflow.com/questions/210974/what-are-your-must-have-editor-features/218956#2189561Answer by Anders Eurenius for What are your must-have editor features?Anders Eurenius2008-10-20T16:01:26Z2008-10-20T16:01:26Z<h2>Telepathic completion.</h2>
<p>No, I'm not joking. Well, um, actually, I think it's called dabbev-expand (dynamic abbreviation expand) in Emacs. It cycles through words in the buffers that are prefixed by the word before the cursor. (Typing com[§][§][§] would give me "completion.", then "completion", finally "common".)</p>
<ul>
<li><p><strong>Syntax highlighting.</strong>
And code-sensitive indentation.</p></li>
<li><p><strong>Macros.</strong> Emacs also has the trick where you can edit and save your macro, but I rarely use it. I'd really like it if that was easier. (If I was writing an editor, I'd probably use <a href="http://www.lua.org" rel="nofollow">Lua</a> for all of that stuff.)</p></li>
<li><p><strong>Folding.</strong> Personally, I like being able to choose my own place for folding, using some regexen, like "{{{" and "}}}". I find the common code-inspection style folding to often be quite annoying since every other line has a foldable keyword on it. Must also nest.</p></li>
<li><p>Search fwd and back must be hindbrain-reflex simple.</p></li>
<li>Goto line. Also from cmdline, so it can be used in scripts. Consider trying hard to interpret "no-such-file" arguments as line references, at least +123, 123, -123, should work. --123, "^void foobar" would be even nicer.</li>
<li>Bracket matching. New to me, but now that I have it...</li>
</ul>
<p>...Lot's of other stuff.</p>
http://stackoverflow.com/questions/193341/how-can-i-best-take-advantage-of-trac/218211#2182113Answer by Anders Eurenius for How can I best take advantage of Trac?Anders Eurenius2008-10-20T12:12:49Z2008-10-20T12:12:49Z<p>If it's a stock install, the database is just an SQLite3, so you can easily write scripts to fetch "safe" info, like the number of tickets, or why not one of the reports. That way, you can discuss freely as long as the ticket name is ok. Revisions, milestones, wikipages, tags (if you use that plugin) are also available.</p>
http://stackoverflow.com/questions/215226/what-lessons-have-you-learned-about-using-a-wiki-as-a-development-tool/218183#2181835Answer by Anders Eurenius for What lessons have you learned about using a wiki as a development tool?Anders Eurenius2008-10-20T12:00:56Z2008-10-20T12:00:56Z<h2>Naming is important.</h2>
<p>A good way to dodge this bullet is to start hierarchical sections or categories early, so you don't get a random-pages-farm. While categories are good, they're also best applied "across" to note things that need some kind of attention. Organising into hierarchies like <code>/InternalProjects</code> (an index page) and <code>/InternalProjects/KnightKitten</code>, [...] really helps keep order.</p>
<h2>Being comfortable.</h2>
<p>It's important to make the wiki your own. It might have authoritative sections that are stricter, but it should have some kind of notes page for each user. If you're new to using wikis, err on the side of verbosity. Wiki writing is an excellent "my brain is spent for the day"-activity.</p>
<h2>If in doubt, write!</h2>
<p>Write it while you still remember all of it, edit later. No matter how clever you think you might be later, there's no substitute for just vomiting it out in random order now. </p>
<ul>
<li>because of the time span between now and later,</li>
<li>'cos later might not happen</li>
<li>'cos the best way to divide and conquer the job is to remember now, make sense later.</li>
</ul>
<h2>Automatic updating works.</h2>
<p>Nobody wants you to sit in copy-paste tedium, least of all your employer. I wrote a tool, <a href="http://trac.gargoyle.ath.cx/trac/wiki/WikiUp" rel="nofollow">WikiUp</a>, to update the technical parts of a wiki, leaving the surrounding discussions intact. It it worked quite well, both technically and socially.</p>
http://stackoverflow.com/questions/217731/x86-assembly-keyboard-input/217750#2177501Answer by Anders Eurenius for x86 Assembly Keyboard InputAnders Eurenius2008-10-20T08:07:47Z2008-10-20T08:07:47Z<p>I've a piece of GeekOS that seems to do</p>
<pre><code>In_Byte(KB_CMD);
</code></pre>
<p>and then</p>
<pre><code>In_Byte(KB_DATA);
</code></pre>
<p>to fetch a scancode. I put it up: <a href="http://gargoyle.ath.cx/~aes/keyboard/keyboard.c" rel="nofollow">keyboard.c</a> and <a href="http://gargoyle.ath.cx/~aes/keyboard/keyboard.h" rel="nofollow">keyboard.h</a>. <code>KB_CMD</code> and <code>KB_DATA</code> being 0x64 and 0x60 respectively. I could perhaps also point out that this is done in an interrupt handler for intr:1.</p>
http://stackoverflow.com/questions/206258/any-suggestions-on-a-trac-whine-like-bugzilla/214538#2145381Answer by Anders Eurenius for Any suggestions on a Trac "whine" like bugzilla?Anders Eurenius2008-10-18T03:56:42Z2008-10-18T03:56:42Z<p>Don't really know the answer to your question, but if not, it shouldn't be too hard to do yourself, trac has a database somewhere. Usually, it's an SQLite3 called $TRAC_ROOT/db/trac.db, from which you can select the relevant bits:</p>
<pre><code>echo "SELECT owner, status, summary FROM ticket;" | sqlite3 $TRAC_ROOT/db/trac.db
</code></pre>
<p>Which would give you something like</p>
<pre><code>tim|assigned|Implement bugzilla-style "whine" emails.
tim|assigned|Fix the other thing
</code></pre>
<p>...And from that, just <<em>handwaving</em>>.</p>
http://stackoverflow.com/questions/210371/luasocket-ftp-always-times-out/214462#2144622Answer by Anders Eurenius for LuaSocket FTP always times outAnders Eurenius2008-10-18T02:54:52Z2008-10-18T03:26:41Z<p>Hm. It looks like the problem is that LuaSocket uses "pasv" in lower case. I'm going try to figure out a work-around.</p>
<p><hr /></p>
<p>Hm. Nope, it looks quite elegantly welded shut. The easiest thing to do is probably to copy <em>that particular file</em> to its equivalent place in a hierarchy in an earlier path in LUA_PATH. That is, (usually) make a local copy of the file, e.g. <code>path/to/your/project/socket/ftp.lua</code>.</p>
<p>Then edit the local file:</p>
<pre><code>- self.try(self.tp:command("user", user or USER))
+ self.try(self.tp:command("USER", user or USER))
- self.try(self.tp:command("pass", password or PASSWORD))
+ self.try(self.tp:command("PASS", password or PASSWORD))
- self.try(self.tp:command("pasv"))
+ self.try(self.tp:command("PASV"))
- self.try(self.tp:command("port", arg))
+ self.try(self.tp:command("PORT", arg))
- local command = sendt.command or "stor"
+ local command = sendt.command or "STOR"
- self.try(self.tp:command("cwd", dir))
+ self.try(self.tp:command("CWD", dir))
- self.try(self.tp:command("type", type))
+ self.try(self.tp:command("TYPE", type))
- self.try(self.tp:command("quit"))
+ self.try(self.tp:command("QUIT"))
</code></pre>
<p>Perversely, a navelnaut expedition using getfenv, getmetatable, etc didn't seem to be worth it. I consider it a serious problem with the design. (of LuaSocket)</p>
<p>It's worth noting that <a href="ftp://ftp.rfc-editor.org/in-notes/rfc959.txt" rel="nofollow">RFC0959</a> uses all-caps commands. (Probably because it's from the 7-bit ASCII era.)</p>
http://stackoverflow.com/questions/212941/using-django-rest-interface/214383#2143833Answer by Anders Eurenius for Using django-rest-interfaceAnders Eurenius2008-10-18T01:52:44Z2008-10-18T01:52:44Z<p>Well, from the look of things, there's an <code>authentication</code> parameter to <code>Collection</code>. (see this example: <a href="http://django-rest-interface.googlecode.com/svn/trunk/django_restapi_tests/examples/authentication.py" rel="nofollow">authentication.py</a>)</p>
<p>Second, (even if Django doesn't have it yet,) there should probably be a middleware that does CSRF/XSRF form checking. (Oh, there seems to <a href="http://docs.djangoproject.com/en/dev/ref/contrib/csrf/#ref-contrib-csrf" rel="nofollow">be one</a>.) You should also be able to use the <a href="http://docs.djangoproject.com/en/dev/topics/auth/#topics-auth" rel="nofollow"><code>login_required</code> and <code>permission_required</code> decorators</a> in the urls.py.</p>
http://stackoverflow.com/questions/213476/pivoting-a-table-in-sql-i-e-cross-tabulation-crosstabulation/214355#2143552Answer by Anders Eurenius for "Pivoting" a Table in SQL (i.e. Cross tabulation / crosstabulation)Anders Eurenius2008-10-18T01:32:39Z2008-10-18T01:39:26Z<p>Bill Karwin mentions this, but I think this deserves to be pointed out very clearly:</p>
<p><strong>SQL doesn't do what you're asking for, so any "solution" you get is going to be a kludge.</strong></p>
<p>If you <em>know</em>, for sure, it's always going to run on an Oracle 10, then sure, Walter Mitty's crosstabulation might do it. The right way to do it is to work the easiest combination of sort order in the query and application code to lay it out right.</p>
<ul>
<li>It works on other database systems,</li>
<li>it doesn't risk any other layers crapping out (I remember MySQL having a problem with >255 columns for instance. Are you sure you <em>interface library</em> copes as well as the db itself?)</li>
<li>it's (usually) not that much harder.</li>
</ul>
<p>If you need to, you can just ask for the <code>Content_Row_ID</code>s first, then ask for whatever rows you need, ordered by <code>CampaignID</code>, <code>ContentRowID</code>, which would give you each (populated) cell in left-to-right, line-by-line order.</p>
<p><hr /></p>
<p>Ps.</p>
<p>There are a bunch of stuff that modern man thinks SQL should have/do that just isn't there. This is one, generated ranges is another, recursive closure, parametric <code>ORDER BY</code>, standardised programming language... the list goes on. (though, admittedly, there's a trick for <code>ORDER BY</code>)</p>
http://stackoverflow.com/questions/202645/effective-sayings-that-relate-something-complex-to-a-layperson/202728#2027280Answer by Anders Eurenius for Effective sayings that relate something complex to a layperson? Anders Eurenius2008-10-14T20:46:49Z2008-10-14T21:54:11Z<h2>Memory hierarchy as hands-pockets-desk-library</h2>
<p>The hands being the registers and the library being the harddrive. (CDs and DVDs being like interlibrary loans...) It helps explain about cache sizes in processors to the reasonably intelligent punters. (I used to sell computers.)</p>
<h2>Memory lane</h2>
<p>Classic. Address-space as a street, where, on each address there's a house with 8 ... Yeah.</p>
<h2>Chapters/pagenumbers</h2>
<p>Explaining filesystems. "You or I might use a ringbinder and rearrange the pages, but the computer has to is list <em>all</em> the pages of a chapter, because it can't rearrange the pages..."</p>
<h2>Postcards, or parcels</h2>
<p>Networking stack. Write about this week of vacation. Send to Jack by putting Jacks address on the postcard, the mail employees route it by the zip-code... and so on.</p>
<h2>Bittorrent as a rumour mill</h2>
<p>The tracker keeps track of who's interested in a topic, but doesn't care about that topic itself. So you ask the tracker about who else is interested and ask each them to tell you a bit about the thing.</p>
<p><hr /></p>
<p>Usually, the trick seems to be finding someting in real life that has a similar form or process. It's not (usually) that the <a href="http://www.catb.org/~esr/jargon/html/M/mundane.html" rel="nofollow">mundanes</a> are dumb, just that they no sensible entry point.</p>
<p>There's a whole bunch of others. I need to think for a bit.</p>
http://stackoverflow.com/questions/202706/is-gtk-responsible-for-the-awkward-look-of-most-linux-applications/202931#2029314Answer by Anders Eurenius for Is gtk+ responsible for the awkward look of most linux applications?Anders Eurenius2008-10-14T21:30:57Z2008-10-14T21:30:57Z<p>The quality of the themes also vary.. It shouldn't be that hard to find a theme that's "horribly wrong" because of its basic choices and priorities. Personally, I like very compressed themes. I even used the <a href="http://enlightenment.org" rel="nofollow">Enlightenment</a> window manager, known for it's eye-candy, to get rid of window decorations completely. So I might choose a violently cramped theme and be very happy, despite the odd glitches that make you wig out.</p>
<p>I'd instead say that Gtk/Gnome is really the reason you are looking at a GNU/Linux desktop <em>at all</em>. The stuff that went before it was <a href="http://www.catb.org/~esr/writings/taouu/html/ch02s06.html#OpenLook" rel="nofollow"><em>truly</em> heinous</a> <em>all the time!</em> (No offence to the creators of XAW, but they probably didn't have "lickable" as a goal...)</p>
http://stackoverflow.com/questions/198199/how-do-you-reverse-a-string-in-place-in-c-or-c/198264#19826410Answer by Anders Eurenius for How do you reverse a string in place in C or C++?Anders Eurenius2008-10-13T16:58:34Z2008-10-13T21:57:38Z<p>Evil C:</p>
<pre><code>#include <stdio.h>
void strrev(char *p)
{
char *q = p;
while(q && *q) ++q;
for(--q; p < q; ++p, --q)
*p = *p ^ *q,
*q = *p ^ *q,
*p = *p ^ *q;
}
int main(int argc, char **argv)
{
do {
printf("%s ", argv[argc-1]); strrev(argv[argc-1]);
printf("%s\n", argv[argc-1]);
} while(--argc);
return 0;
}
</code></pre>
<p>(This is XOR-swap thing. Take care to note that you <em>must avoid</em> swapping with self, because a^a==0.)</p>
<p><hr /></p>
<h2>Ok, fine, let's fix the UTF-8 chars...</h2>
<pre><code>#include <bits/types.h>
#include <stdio.h>
#define SWP(x,y) (x^=y, y^=x, x^=y)
void strrev(char *p)
{
char *q = p;
while(q && *q) ++q; /* find eos */
for(--q; p < q; ++p, --q) SWP(*p, *q);
}
void strrev_utf8(char *p)
{
char *q = p;
strrev(p); /* call base case */
/* Ok, now fix bass-ackwards UTF chars. */
while(q && *q) ++q; /* find eos */
while(p < --q)
switch( (*q & 0xF0) >> 4 ) {
case 0xF: /* U+010000-U+10FFFF: four bytes. */
SWP(*(q-0), *(q-3));
SWP(*(q-1), *(q-2));
q -= 3;
break;
case 0xE: /* U+000800-U+00FFFF: three bytes. */
SWP(*(q-0), *(q-2));
q -= 2;
break;
case 0xC: /* fall-through */
case 0xD: /* U+000080-U+0007FF: two bytes. */
SWP(*(q-0), *(q-1));
q--;
break;
}
}
int main(int argc, char **argv)
{
do {
printf("%s ", argv[argc-1]); strrev_utf8(argv[argc-1]);
printf("%s\n", argv[argc-1]);
} while(--argc);
return 0;
}
</code></pre>
<ul>
<li>Why, yes, if the input is borked, this will cheerfully swap outside the place.</li>
<li>Useful link when vandalising in the UNICODE: <a href="http://www.macchiato.com/unicode/chart/" rel="nofollow">http://www.macchiato.com/unicode/chart/</a></li>
<li><p>Also, UTF-8 over 0x10000 is untested (as I don't seem to have any font for it, nor the patience to use a hexeditor)</p>
<p>$ ./strrev Räksmörgås ░▒▓○◔◑◕●</p>
<p>░▒▓○◔◑◕● ●◕◑◔○▓▒░</p>
<p>Räksmörgås sågrömskäR</p>
<p>./strrev verrts/.</p></li>
</ul>
http://stackoverflow.com/questions/187526/access-aliases-in-gnome-run-application-dialog/198830#1988301Answer by Anders Eurenius for Access aliases in Gnome "Run Application" dialogAnders Eurenius2008-10-13T20:00:30Z2008-10-13T20:26:10Z<p><a href="http://www.freedesktop.org/wiki/Specifications" rel="nofollow">http://www.freedesktop.org/wiki/Specifications</a> is probably a good place to start. I find these quite hard to follow most of the time, but sometimes you can figure it out. Specifically, the "Desktop Entry Specification".</p>
<p>Also, I don't think you'll be able to use any aliases from <code>.bashrc</code>, at least not without writing some kind of wrapper script. I think it needs to be an executable file. Of course, you could just use the good old symlinks- to- same + what's- my- name trick...</p>
<p>(Which, for reference, goes like this:</p>
<ol>
<li>Make a script which uses its own name as a parameter.</li>
<li>Make symlinks to said script using the parameter values as the link names.)</li>
</ol>
<p><hr /></p>
<h1>Investigating...</h1>
<p>Some casual investigation reveals that creating these is fairly simple if you use Nautilus, (at least the version I have):</p>
<ol>
<li>Bring up the context menu for some random file, and use "Open With"->"Open with Other Application".</li>
<li>Unfold the "Use a custom command" and type in something like:
<ol>
<li><code>xterm -e 'bash -c "unzip -l %f; sleep 5"'</code></li>
</ol></li>
<li>This results in
<ol>
<li>the command being run (so don't type <code>rm -rf</code>)</li>
<li>a file in <code>~/.local/share/applications/</code> called <code>xterm-usercreated.desktop</code></li>
</ol></li>
</ol>
<p>Here at least, I get the follow file:</p>
<pre><code>[Desktop Entry]
Encoding=UTF-8
Name=xterm
MimeType=application/zip;
Exec=xterm -e 'bash -c "unzip -l %f; sleep 5"' %f
Type=Application
Terminal=false
NoDisplay=true
</code></pre>
<p>4: Looking at the system xterm .desktop I find this:</p>
<pre><code>[Desktop Entry]
Type=Application
Encoding=UTF-8
Name=XTerm
GenericName=
Comment=XTerm: terminal emulator for X
Icon=/usr/share/pixmaps/xterm-color_32x32.xpm
Exec=xterm
Terminal=false
Categories=X-Debian-Applications-Terminal-Emulators;
</code></pre>
<p>5: Editing the .usercreated.desktop file to this:</p>
<pre><code>[Desktop Entry]
Type=Application
Encoding=UTF-8
Name=xtermz
Exec=xterm -e 'bash -c "unzip -l %f; sleep 5"' %f
Terminal=false
Categories=X-Local-WTF
</code></pre>
<p>6: Run xdg-desktop-menu forceupdate --mode user</p>
<p>7: "xtermz" now shows up in the list... Success!</p>
<p>8: Yuck! This also makes it appear in the main menu, under "Other". Weird!</p>
<p><hr /></p>
<h2>Some notes:</h2>
<ul>
<li>In my Debian/testing, <code>xdg-desktop-menu</code> and friends (notably <code>xdg-icon-resource</code>) live in the <code>xdg-utils</code> package.</li>
<li>You should be able to create a <code>.desktop</code> file from scratch.</li>
<li>You should be able to install the <code>.desktop</code> file using <code>xdg-desktop-menu install</code> blah blah</li>
</ul>
http://stackoverflow.com/questions/32044/how-can-i-render-a-tree-structure-recursive-using-a-django-template/32125#32125Comment by Anders Eurenius on How can I render a tree structure (recursive) using a django template?Anders Eurenius2009-11-17T09:07:58Z2009-11-17T09:07:58ZSure. You make a list like [ 'in', 'in', 'blah', 'out', 'blah', 'out'] and then you loop over that in the template. If it's equal to 'in' you emit a li, 'out' you emit a /li and otherwise you just dump the text itself.http://stackoverflow.com/questions/1449817/what-are-some-of-the-most-useful-regular-expressions-for-programmers/1449844#1449844Comment by Anders Eurenius on What are some of the most useful regular expressions for programmers?Anders Eurenius2009-09-20T10:17:36Z2009-09-20T10:17:36Z@recursive: Sure. But where I use it, the point is to eat the contents of the field. If I wanted a correct xml parser, I'd use one..http://stackoverflow.com/questions/1449817/what-are-some-of-the-most-useful-regular-expressions-for-programmersComment by Anders Eurenius on What are some of the most useful regular expressions for programmers?Anders Eurenius2009-09-20T00:01:04Z2009-09-20T00:01:04Z@dmckee: Are you sure? Isn't it easier to simply type what you mean, instead trying to build and remember the specificts of some kind of abstraction that only you use?http://stackoverflow.com/questions/1449817/what-are-some-of-the-most-useful-regular-expressions-for-programmers/1449827#1449827Comment by Anders Eurenius on What are some of the most useful regular expressions for programmers?Anders Eurenius2009-09-19T23:56:51Z2009-09-19T23:56:51ZI have a routine somewhere for generating regexes for {0,1}-upto-n, for any n, somewhere. I just don't use it that often, since it's usually more convenient to check the number once you've read it.http://stackoverflow.com/questions/1274858/what-would-be-a-suitable-way-to-log-changes-within-a-database/1275255#1275255Comment by Anders Eurenius on What would be a suitable way to log changes within a databaseAnders Eurenius2009-08-14T08:09:53Z2009-08-14T08:09:53ZI've used this, and it works very nicely. You'll need to trigger on INSERT, UPDATE and DELETE and save the right thing in each case, but yeah, basically that's it. You get a nice audit table 'for free',http://stackoverflow.com/questions/1253258/language-w-the-smallest-interpreter-written-in-itself/1253877#1253877Comment by Anders Eurenius on Language w/ the smallest interpreter written in itselfAnders Eurenius2009-08-12T07:39:36Z2009-08-12T07:39:36ZSo we can count on you to implement this?http://stackoverflow.com/questions/1203451/how-to-write-an-application-for-the-system-tray-in-linuxComment by Anders Eurenius on How to write an application for the system tray in LinuxAnders Eurenius2009-07-30T21:06:03Z2009-07-30T21:06:03Z(It's not relevant, not since the freedesktop spec. (which was the whole point of having it.))http://stackoverflow.com/questions/1175673/help-on-language-choice/1177453#1177453Comment by Anders Eurenius on Help on language choiceAnders Eurenius2009-07-29T22:55:01Z2009-07-29T22:55:01ZThere's a way to bundle up python apps for windows: <a href="http://docs.python.org/using/windows.html#py2exe" rel="nofollow">docs.python.org/using/windows.html#py2exe</a>http://stackoverflow.com/questions/1124968/most-harmful-misconception-of-beginners-about-programming/1125030#1125030Comment by Anders Eurenius on Most harmful misconception of beginners about programming?Anders Eurenius2009-07-14T12:56:18Z2009-07-14T12:56:18ZYes! This is quite seductive and can be hard to get rid of.http://stackoverflow.com/questions/1117491/fake-a-cookie-to-scrape-a-site-in-python/1118060#1118060Comment by Anders Eurenius on Fake a cookie to scrape a site in pythonAnders Eurenius2009-07-13T07:34:09Z2009-07-13T07:34:09ZThere are a few remote control browser solutions. I like selenium, particularly since I can run it in a virtual framebuffer Xwindows. (screenshots still work just fine.) Don't know much about the others, though.http://stackoverflow.com/questions/949098/python-split-a-list-based-on-a-condition/950207#950207Comment by Anders Eurenius on Python: split a list based on a condition?Anders Eurenius2009-06-05T07:19:37Z2009-06-05T07:19:37ZTrue, but it gets returned, so... Actually, this is the perfect example of why you <i>don't</i> want to add more clever to your code. :-Phttp://stackoverflow.com/questions/847904/how-do-i-upload-pickled-data-to-django-filefieldComment by Anders Eurenius on How do I upload pickled data to django FileField?Anders Eurenius2009-05-11T15:26:28Z2009-05-11T15:26:28ZJust so we're clear: You're not talking about letting any <i>users</i> upload any pickles, right? That would be <i>extremely</i> dangerous,http://stackoverflow.com/questions/221283/can-you-rename-a-shell-session-by-command-in-linux/221293#221293Comment by Anders Eurenius on Can you rename a shell session by command in linux?Anders Eurenius2008-10-21T09:58:25Z2008-10-21T09:58:25ZYou may need -e depending on your shell / profile.http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/144890#144890Comment by Anders Eurenius on Why is quicksort better than mergesort?Anders Eurenius2008-10-20T15:31:26Z2008-10-20T15:31:26ZIt <i>is</i> O(n), where n is the <i>total</i> input size, that is, including the size of the elements. It's true that you can implement it so you have to pad with a lot of zeroes, but it's nonsense to use a poor implementation for comparison. (That said, implementation can be hard, ymmv.)http://stackoverflow.com/questions/217316/best-algorithm-for-determining-the-high-and-low-in-an-array-of-numbers/217326#217326Comment by Anders Eurenius on Best algorithm for determining the high and low in an array of numbers?Anders Eurenius2008-10-20T12:31:12Z2008-10-20T12:31:12ZInitializing using the first element, you assume there is one. (sequence could be empty.