User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T18:43:18Z http://stackoverflow.com/feeds/user/34771 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1837438/can-you-have-hash-tables-in-lisp/1851548#1851548 1 Answer by vatine for Can you have hash tables in lisp? vatine 2009-12-05T08:06:44Z 2009-12-05T08:06:44Z <p>There's built-in <a href="http://www.lispworks.com/documentation/HyperSpec/Body/18_.htm" rel="nofollow">hash tables</a>, that use a system hash function (typically SXHASH) and where you can have a couple of different equality checkers (EQ, EQL, EQUAL or EQUALP depending on what you consider to be "the same" key).</p> <p>If the built-in hash tables are not good enough, there's also <a href="http://cdr.eurolisp.org/document/2/genhash.html" rel="nofollow">a generic hash table</a> library. It will accept any pair of "hash generator"/"key comparator" and build you a hash table. However, it relies on having a good hash function to work well and that is not necessarily trivial to write.</p> http://stackoverflow.com/questions/1761950/how-can-i-implement-tee-programmatically-in-c/1761977#1761977 0 Answer by vatine for How can I implement 'tee' programmatically in C? vatine 2009-11-19T09:26:10Z 2009-11-19T09:26:10Z <p>There's no trivial way of doing this in C. I suspect the easiest would be to call popen(3), with tee as the command and the desired log file as an arument, then dup2(2) the file descriptor of the newly-opened FILE* onto fd 1.</p> <p>But that looks kinda ugly and I must say that I have NOT tried this.</p> http://stackoverflow.com/questions/1747559/weird-time-issue-in-python/1747576#1747576 0 Answer by vatine for Weird Time Issue in Python vatine 2009-11-17T09:24:35Z 2009-11-17T09:24:35Z <p>Bordering on silly, are these two running on the same machine? If not, are both machines using NTP to synchronise time?</p> http://stackoverflow.com/questions/1734566/how-to-make-a-new-list-to-point-somewhere-else-lisp/1734590#1734590 2 Answer by vatine for How to make a new list to point somewhere else, Lisp vatine 2009-11-14T15:38:40Z 2009-11-14T15:38:40Z <p>You're probably wanting to use COPY-LIST.</p> http://stackoverflow.com/questions/1734572/http-proxy-server/1734587#1734587 0 Answer by vatine for HTTP proxy server vatine 2009-11-14T15:37:50Z 2009-11-14T15:37:50Z <p>A proxy server for what protocol? Before you know that, starting coding is not the most beneficial next step.</p> <p>After you've decided on what protocol to implement, you (probably) need to read up on the sockets API.</p> <p>Once that's done, there's three major routes to go, using a poll/select-based loop, forking off per-session processes or using threads to shuffle data.</p> http://stackoverflow.com/questions/1707499/eval-during-emacs-lisp-macro-expansion/1708031#1708031 0 Answer by vatine for eval during emacs lisp macro expansion vatine 2009-11-10T13:39:29Z 2009-11-10T13:39:29Z <p>The "right" fix is to not require evaluation of user-supplied parameters within the macro expansion function.</p> <p>(defmacro foo4 (a) `(setq ,a t))</p> <p>Though this does NOT do the same thing as either of foo1, foo2 or foo3. What is the problem you are trying to solve?</p> http://stackoverflow.com/questions/1687344/how-do-you-generate-random-unique-identifiers-in-a-multi-process-and-multi-thread/1687398#1687398 1 Answer by vatine for How do you generate random unique identifiers in a multi process and multi thread environment? vatine 2009-11-06T12:51:36Z 2009-11-06T12:51:36Z <p>I'd start with a thread-unique ID and (somehow) concatenate that with a thread-local counter, then feed it through a cryptographic hash algorithm.</p> http://stackoverflow.com/questions/1686101/private-network-as-in-ipv4-question/1686663#1686663 1 Answer by vatine for Private Network (as in IPv4) question vatine 2009-11-06T10:16:29Z 2009-11-06T10:16:29Z <p>You're (probably) better off measuring latency than looking at IP addresses. Just because two IPs do not live within the same subnet does NOT mean they have high latency between them.</p> <p>Just because two IPs happen to live within the same IP range does not mean taht the have low latency (consider two ethernet segments, linked by a WAN bridge across a 64 kbps line; maybe unlikely in this day and age, but I have certainly worked with networks where links like that were common).</p> <p>However, checking that two IPs are within the same subnet is certainly a good approximation.</p> http://stackoverflow.com/questions/1559378/automate-faq-system-algorithm/1607459#1607459 1 Answer by vatine for Automate FAQ system & Algorithm vatine 2009-10-22T14:04:20Z 2009-10-22T14:04:20Z <p>When I was working on some code for automatic selection of questions and answers from a FAQ collection, I ended up extracting keywords from the answers and setting scores on them. Then I checked all keywords against the question asked and the highest-scoring Q&amp;A pair was presented.</p> <p>A slight improvement would be to present the highest-scoring Q&amp;A and all Q&amp;A pairs that score 90% or more of that.</p> <p>Unfortunately, I do not have any code at hand.</p> http://stackoverflow.com/questions/1597542/scheduling-algorithm-problem/1606887#1606887 1 Answer by vatine for Scheduling algorithm/problem vatine 2009-10-22T12:31:55Z 2009-10-22T12:31:55Z <p>A few things to make the problem simpler. You can probably shrink the number of "units to schedule" down from tens of thousands to a few hundred, by looking at people who are sitting the same set of exams. If you have 300 people who all are sitting "Introduction to Computer Science" and "Maths for CS students", you can schedule all 300 as a single unit, because they will all have the same constraints and you (probably) do not want identical exams to be given in multiple slots.</p> http://stackoverflow.com/questions/1579023/design-of-an-alternative-fluent-interface-for-regular-expressions/1594760#1594760 1 Answer by vatine for Design of an Alternative (Fluent?) Interface for Regular Expressions vatine 2009-10-20T13:50:18Z 2009-10-21T08:53:25Z <p>A regular expression is a description of a finite state machine. The classic textual representation isn't necessarily bad. It is compact, it is relatively unambigous and it is fairly well adopted.</p> <p>It MAY be that a better representation would be a state transition diagram, but that would probably be hard to use in source code.</p> <p>One possibility would be to build it from a variety of container and combiner objects.</p> <p>Something along the line of the following (turning this from pseudo-code to language of choice is left as an exercise for the eager):</p> <pre> domainlabel = oneormore(characterclass("a-zA-Z0-9-")) separator = literal(".") domain = sequence(oneormore(sequence(domainlabel, separator)), domainlabel) localpart = oneormore(characterclassnot("@")) emailaddress = sequence(localpart, literal("@"), domain) </pre> <p>Note that the above will incorrectly classify arbritarily many email addresses as being valid that do NOT conform to the grammar they're required to follow, as that grammar requires more than a simple FSM for full parsing. I don't believe it'd misclassify a valid address as invalid, though.</p> <p>It should correspond to [^@]+@([a-zA-Z0-9-]+.)+.([a-zA-Z0-9-]+)</p> http://stackoverflow.com/questions/1593080/how-can-i-modify-my-shunting-yard-algorithm-so-it-accepts-unary-operators/1593266#1593266 0 Answer by vatine for How can I modify my Shunting-Yard Algorithm so it accepts unary operators? vatine 2009-10-20T08:48:46Z 2009-10-20T08:48:46Z <p>When I needed to support this, I did this in an intermediate stage. I started by generating a list of all expression lexemes, then used helper functions to extract operators and operands and the "get operand" function simply consumed two lexemes whenever it saw a unary operator.</p> <p>It really helps if you use another character to signify "unary minus", though.</p> http://stackoverflow.com/questions/1593183/how-to-strengthen-mysql-database-server-security/1593237#1593237 0 Answer by vatine for How to strengthen Mysql database server Security? vatine 2009-10-20T08:44:25Z 2009-10-20T08:44:25Z <ul> <li>Lock down access to specific user(s) from specific IPs. <li>Use a non-public network for the inter-server communication. <li>If applicable, lock down access to whatever MySQL port you decide on on the OS level. <li>If you feel it's applicable, change the default port (though this will cause knock-on configuration for a lot of things). </ul> http://stackoverflow.com/questions/1586658/combine-gyroscope-and-accelerometer-data/1589024#1589024 1 Answer by vatine for Combine Gyroscope and Accelerometer Data vatine 2009-10-19T14:34:37Z 2009-10-19T14:34:37Z <p><a href="http://www.gamasutra.com/" rel="nofollow">Gamasutra.com</a> ran <a href="http://www.gamasutra.com/view/feature/1494/wheres_the_wiimote_using_kalman_.php" rel="nofollow">an article on using Kalman filters for WiiMote filtering</a>.</p> <p>There are some links to C++ source code at the end of the article.</p> http://stackoverflow.com/questions/1524912/clozure-common-lisp-tcp-socket-programming-sending-a-reply/1524948#1524948 2 Answer by vatine for Clozure Common Lisp - TCP Socket Programming - Sending a Reply vatine 2009-10-06T11:05:27Z 2009-10-06T11:05:27Z <p>In SBCL (using usocket), I use the SOCKET-STREAM function to return a lisp stream, then use FORMAT, WRITE and the like to send things across.</p> http://stackoverflow.com/questions/1458861/when-should-i-ask-myself-if-my-method-is-thread-safe-or-not/1459077#1459077 0 Answer by vatine for When should I ask myself if my method is thread-safe or not? vatine 2009-09-22T09:35:35Z 2009-09-22T09:35:35Z <p>There are two cases:</p> <p>Your work will be in a predominantly single-threaded environment. Ask yourself "is there any chance this can be called from something multithreaded?".</p> <p>Your work will be in a predominantly multi-threaded environment. Ask yourself "can I prove this will only EVER be called from a single thread? Or, slightly weaker, can I prove that it will only be called while under an exclusivity guarantee?"</p> <p>If the first question yields "yes" or the second yields "no", make sure your code is safe for multiple simultaneous executions.</p> http://stackoverflow.com/questions/1377430/why-is-squaring-a-number-faster-than-multiplying-two-random-numbers/1377834#1377834 0 Answer by vatine for Why is squaring a number faster than multiplying two random numbers? vatine 2009-09-04T08:02:26Z 2009-09-04T08:02:26Z <p>If you have a binary number A, it can (always, proof left to the eager reader) be expressed as (2^n + B), this can be squared as 2^2n + 2^(n+1)B + B^2. We can then repeat the expansion, until such a point that B equals zero. I haven't looked too hard at it, but intuitively, it feels as if you should be able to make a squaring function take fewer algorithmical steps than a general-purpose multiplication.</p> http://stackoverflow.com/questions/1346038/algorithm-for-placing-nodes-on-a-circle-considering-their-distance-to-eachother/1346778#1346778 1 Answer by vatine for Algorithm for placing nodes on a circle considering their distance to eachother vatine 2009-08-28T12:41:58Z 2009-08-28T12:41:58Z <p>It's possible that <a href="http://www.graphviz.org/" rel="nofollow">GraphViz</a> has some links to algorithms. Alternatively, you may be able to get your data into a format that GraphViz accepts and run it through that.</p> http://stackoverflow.com/questions/1274792/is-returning-null-bad-design/1276553#1276553 0 Answer by vatine for Is returning null bad design? vatine 2009-08-14T07:44:09Z 2009-08-14T07:44:09Z <p>Sometimes, returning NULL is the right thing to do, but specifically when you're dealing with sequences of different sorts (arrays, lists, strings, what-have-you) it is probably better to return a zero-length sequence, as it leads to shorter and hopefully more understandable code, while not taking much more writing on API implementer's part.</p> http://stackoverflow.com/questions/1124538/which-open-source-ospf-routing-implementations-are-available/1124659#1124659 1 Answer by vatine for Which open source OSPF-Routing implementations are available? vatine 2009-07-14T10:52:23Z 2009-07-14T10:52:23Z <p>There's OSPF code in both <a href="http://www.quagga.net/" rel="nofollow">Quagga</a> and <a href="http://www.zebra.org/" rel="nofollow">Zebra</a>. Although, as Quagga is a fork of Zebra, you'll probably find that the code is pretty similar.</p> <p>I don't know if the free-to-use version of GateD contains OSPF code, but that may be an independent implementation.</p> http://stackoverflow.com/questions/1116735/i-less-efficient-than-i-how-to-show-this/1118338#1118338 -1 Answer by vatine for i++ less efficient than ++i, how to show this? vatine 2009-07-13T08:47:16Z 2009-07-13T08:47:16Z <p>Either pre-increment or post-increment may be the most efficient (and if one of them is the most efficient, it's probably true that the other type is more effciient for decrements).</p> <p>CPUs may well have a "fetch and increment" that is either a pre- or post-increment (some, I understand, have both) and if you use what's natively supported by your CPU, you'll probably get better performance than if you use something that needs to be implemented with more instructions.</p> http://stackoverflow.com/questions/1097185/what-is-the-simplest-way-to-write-a-timer-in-c-c/1097203#1097203 0 Answer by vatine for What is the simplest way to write a timer in C/C++? vatine 2009-07-08T10:10:04Z 2009-07-08T10:10:04Z <p>If all you need is a code snippet that lets your program rest, a call to sleep is enough (if you're OK with second granularity).</p> http://stackoverflow.com/questions/1078770/array-searching-code-challenge/1079412#1079412 10 Answer by vatine for Array Searching code challenge vatine 2009-07-03T13:41:46Z 2009-07-03T13:41:46Z <p>Common lisp:</p> <pre> (defun golf-code (master-seq sub-seq) (search sub-seq master-seq)) </pre> http://stackoverflow.com/questions/1075083/execute-a-shell-command-from-a-shell-script-without-stopping-if-error-occurs/1075259#1075259 1 Answer by vatine for Execute a shell command from a shell script without stopping if error occurs vatine 2009-07-02T16:08:14Z 2009-07-02T16:08:14Z <p>If <b>invoke-rc.d tomcat stop</b> is the only thing you want to protect against failing, maybe <b>invoke-rc.d tomcat stop || true</b> may do it? That should never have a non-zero exit status.</p> http://stackoverflow.com/questions/1066282/fast-algorithm-to-generate-500-000-html-file/1068247#1068247 1 Answer by vatine for Fast Algorithm to Generate 500,000 html file. vatine 2009-07-01T09:40:42Z 2009-07-01T09:40:42Z <p>If I were to do this, I'd store the generated files in a hierarchy, based on the file name (IFF the filenames are sufficiently well distributed), so "onefile.html" gets stored in "o/n/e/onefile.html" and "anotherfile.html" as "a/n/o/anotherfile.html". Using three levels of storage isn't necessary, you may require four. Also, chunking the pathnames on a per-character basis may not be the best distribution, you may be better off using two or three characters, depending on how your distribution looks.</p> <p>I've used similar storage schemes for received faxes for an electronic fax service in the past (using longer and longer prefixes of the destination fax number as pathname components).</p> <p>I guess the reason you're looking at generating the flat files is to amortise the cost of generating the HTML?</p> http://stackoverflow.com/questions/1067827/dangerous-ways-of-removing-compiler-warnings/1068004#1068004 1 Answer by vatine for Dangerous ways of removing compiler warnings? vatine 2009-07-01T08:39:23Z 2009-07-01T08:39:23Z <p>Commenting out (or worse, deleting) the code that generates the warning. Sure, the warning goes away, but you are more than just a little likely ending up with code that doesn't do what you intend.</p> http://stackoverflow.com/questions/1042066/looking-for-clisp-examples-of-mini-languages-that-is-dsls/1049063#1049063 2 Answer by vatine for Looking for (c)lisp examples of mini-languages, that is, DSLs. vatine 2009-06-26T13:14:21Z 2009-06-26T13:14:21Z <p>The LOOP macro is an almost perfect example of a DSL embedded in Common Lisp. However, since it's already part of the standard, it may not be what you're after.</p> http://stackoverflow.com/questions/1043293/real-life-benefits-of-dynamic-languages/1043444#1043444 2 Answer by vatine for Real Life Benefits of Dynamic Languages? vatine 2009-06-25T11:38:12Z 2009-06-25T11:38:12Z <p>In general, I prefer talking about "interactive" languages rather than "dynamic" languages. When you only have an edit/compile/run cycle, any turn-around takes a long time. Well, at least on the order of "need to save, compile, check the compilation report, test-run, check test results".</p> <p>With an interactive language, it's usually easy to modify a small part, then immediately test results. If your test runs still take a lomg time, you haven't won that much, but you can usually test on smaller cases. This facilitates rapid development. Once you have a known-correct implementation, this also helps optimisation, as you can develop and test your new, improved function(s) quickly and experiment with different representations or algorithms.</p> http://stackoverflow.com/questions/1032805/how-do-we-calculate-the-uptime-of-24-7-website/1032947#1032947 1 Answer by vatine for How do we calculate the uptime of 24/7 website? vatine 2009-06-23T14:34:44Z 2009-06-23T14:34:44Z <p>Uptime is one quality of service figure. Other interesting figures are "mean time to fix", "mean time between failures" and other service restoration figures. Ideally, there would be people awake and alert 24/7 to fix faults, but most places will (at best) have alert and awake people monitoring the service 24/7 and have on-call engineers to do the actual fix (at least if it's a more complicated one), so knowing how out-of-hours service (IF they will tell you) is also a factor in choosing a provider.</p> http://stackoverflow.com/questions/1020968/separate-namespaces-for-functions-and-variables-in-common-lisp-versus-scheme/1024639#1024639 0 Answer by vatine for Separate Namespaces for Functions and Variables in Common Lisp versus Scheme vatine 2009-06-21T20:00:52Z 2009-06-21T20:00:52Z <p>There's good things to both approaches. However, I find that when it matters, I prefer having both a function LIST and a a variable LIST than having to spell one of them incorrectly.</p> http://stackoverflow.com/questions/1797810/a-phrase-as-catchy-as-feature-creep-but-for-underestimated-projects/1797822#1797822 Comment by on A phrase as catchy as 'Feature Creep' but for underestimated projects 2009-11-25T15:48:24Z 2009-11-25T15:48:24Z I'd expect &quot;scope creep&quot; to apply to projects whose scope is expanded, rather than just woefully under-estimated. http://stackoverflow.com/questions/1563768/compound-conditional-in-lisp/1563814#1563814 Comment by on Compound Conditional in Lisp 2009-11-24T12:54:45Z 2009-11-24T12:54:45Z The body of a COND expression is wrapped in an implicit PROGN, so there is no need to explicitly provide one. http://stackoverflow.com/questions/1783352/is-functional-programming-a-subset-of-imperative-programming/1783381#1783381 Comment by on Is functional programming a subset of imperative programming? 2009-11-23T15:54:07Z 2009-11-23T15:54:07Z Lisp (Common Lisp, specifically) is usually referred to as a multi-paradigm language. You can write imperative as well as functional code with relative ease. http://stackoverflow.com/questions/1760116/algorithm-implementation-to-improve Comment by on Algorithm Implementation to Improve 2009-11-20T09:25:46Z 2009-11-20T09:25:46Z Beta: I could certainly see a rigorous approach to implementation optimization as a worthwhile CS research subject, especially if it is machine-implementable. http://stackoverflow.com/questions/1707499/eval-during-emacs-lisp-macro-expansion/1708031#1708031 Comment by on eval during emacs lisp macro expansion 2009-11-13T10:12:22Z 2009-11-13T10:12:22Z So it does! I even looked for that! http://stackoverflow.com/questions/1687344/how-do-you-generate-random-unique-identifiers-in-a-multi-process-and-multi-thread/1687398#1687398 Comment by on How do you generate random unique identifiers in a multi process and multi thread environment? 2009-11-10T11:27:39Z 2009-11-10T11:27:39Z You use another piece of state (unique process ID) and concatenate that with the thread-unique ID and a thread-local counter, then hash. Only works as long as you're in &quot;not huge number of threads and processes&quot; territory, as you probably do not want to burst 64 bits for your counter, but that'd give you, say, a thread-local counter that's 32 bits, then 16 bits for process ID and another 16 for thread ID, so well within the space of reasonable. http://stackoverflow.com/questions/1597542/scheduling-algorithm-problem/1606887#1606887 Comment by on Scheduling algorithm/problem 2009-10-23T09:24:24Z 2009-10-23T09:24:24Z Main reason is that when I was at university, there was nothing (except time) to stop students from taking extra classes. Add in the complication of re-taking a failed exam later on and you're in a world of pain. http://stackoverflow.com/questions/1579023/design-of-an-alternative-fluent-interface-for-regular-expressions/1594760#1594760 Comment by on Design of an Alternative (Fluent?) Interface for Regular Expressions 2009-10-22T12:18:14Z 2009-10-22T12:18:14Z A good notation should suggest a good API (and vice versa). http://stackoverflow.com/questions/1579023/design-of-an-alternative-fluent-interface-for-regular-expressions/1594760#1594760 Comment by on Design of an Alternative (Fluent?) Interface for Regular Expressions 2009-10-21T10:55:08Z 2009-10-21T10:55:08Z My example is a mix of a &quot;structure-based&quot; and &quot;text-based&quot; (you want the ability to express self-matching literals using strings, I think). There are multiple possible ways of expressing FSMs, in various ways. Though I think you'd actually do better with a good notation for Augmented Transition Networks, because they're capable of more complex matches than regular expressions, while still being (relatively) easy to reason about. http://stackoverflow.com/questions/1586658/combine-gyroscope-and-accelerometer-data/1589024#1589024 Comment by on Combine Gyroscope and Accelerometer Data 2009-10-20T08:40:05Z 2009-10-20T08:40:05Z From what I understand, you smooth one, then use that to apply a corrective factor to the other. Can't say I FULLY understand how it's supposed to work, though. These &lt;a href=&quot;<a href="http://www.tlb.org/scooter2.html&quot;&gt;two&lt;/a&gt" rel="nofollow">tlb.org/scooter2.html&quot;&gt;two&lt;/a&gt/&hellip;</a>; &lt;a href=&quot;<a href="http://www.tlb.org/scooter.html&quot;&gt;articles&lt;/a&gt" rel="nofollow">tlb.org/scooter.html&quot;&gt;articles&lt;/a&gt/&hellip;</a>; may be of help. http://stackoverflow.com/questions/266253/is-there-a-programming-language-below-assembly/266257#266257 Comment by on Is there a programming language "below" Assembly? 2009-10-19T14:29:51Z 2009-10-19T14:29:51Z I don't know what state-of-the-art assembler programs can do these days, but in the Olden Days, a macro assembler could do a fair bit of automatic stuff for you (function entries, keeping track of argument counts, automatic allocation, conditional macro expansion and other Neat Stuff that is a chore to do manually). So I'd say that machine code is &quot;lower&quot; than assembly for taht reason. http://stackoverflow.com/questions/1078770/array-searching-code-challenge/1079221#1079221 Comment by on Array Searching code challenge 2009-07-03T13:42:51Z 2009-07-03T13:42:51Z Why not use &lt;a href=&quot;<a href="http://www.lispworks.com/documentation/lw50/CLHS/Body/f_search.htm#search&quot;&gt;SEARCH&lt;/a&gt" rel="nofollow">lispworks.com/documentation/lw50/&hellip;</a>;? http://stackoverflow.com/questions/1043293/real-life-benefits-of-dynamic-languages/1043444#1043444 Comment by on Real Life Benefits of Dynamic Languages? 2009-06-26T08:10:41Z 2009-06-26T08:10:41Z The language I mostly use this method with is Common Lisp,. I guess this means there's now a third (or maybe even fourth) axis in computer language defnitions (strongly/weakly typed, static/dynamic typing, interactive/batch and possibly scripting or not). http://stackoverflow.com/questions/1021778/getting-command-line-arguments-in-common-lisp/1021843#1021843 Comment by on Getting command line arguments in Common Lisp 2009-06-21T19:56:21Z 2009-06-21T19:56:21Z Yes, but when you have your FOO conditionally read, it's, possibly, good to have a fall-back. But, then, the value of (or) is, not entirely surprising, NIL (just as the value of (and) is T). http://stackoverflow.com/questions/796931/why-wasnt-code-managed-from-the-start/796985#796985 Comment by on Why wasn't code "managed" from the start? 2009-04-28T13:05:05Z 2009-04-28T13:05:05Z lisp has been a compiled language since 1962.