User Dominic Cooney - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T16:35:02Zhttp://stackoverflow.com/feeds/user/878http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1516904/jquery-div-fading-trouble/1517001#15170011Answer by Dominic Cooney for JQuery - div fading troubleDominic Cooney2009-10-04T18:02:04Z2009-10-04T18:13:45Z<p>If I understand your question, you have two problems: the content doesn't fade in, and when you click it, the content doesn't fade out.</p>
<p>Both problems are probably caused by your script executing before the wrapper and content divs have appeared in the document. If your <code><script></code> tag is in the <code><head></code> of your document, then <code>$('#wrapper')</code> won't find anything to fade in and <code>$('#content')</code> won't find anything to attach a click handler to.</p>
<p>The best solution is probably to defer doing anything until the document is loaded, by using <code>ready</code>:</p>
<pre><code>$(document).ready(function () {
$('#wrapper').fadeIn(1500);
$('#content').click(function () {
$(this).fadeOut(1500);
});
});
</code></pre>
<p>Alternatively you could put your <code><script></code> tag <em>after</em> the <code><div></code> tags in the body.</p>
<p>When you fix this problem the content will fade in, but it won't be smooth because the wrapper div is initially visible—you have <code>style="display:block"</code> on the wrapper div. You need to make that <code>display: none;</code> instead so that the wrapper div is hidden while the page is loading.</p>
<p>Here is a complete file which works:</p>
<pre><code><html>
<head>
<style type="text/css">
#wrapper
{
display: none;
}
#content
{
height: 100%;
width: 100%;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js">
window.alert("Couldn't load jQuery");
</script>
<script>
$(document).ready(function () {
$('#wrapper').fadeIn(1500);
$('#content').click(function () {
$(this).fadeOut(1500);
});
});
</script>
</head>
<body>
<div id="wrapper">
<div id="content">
Some text
</div>
</div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1420145/visiting-all-free-slots-in-a-bitfield/1420269#14202696Answer by Dominic Cooney for visiting all free slots in a bitfieldDominic Cooney2009-09-14T08:14:43Z2009-09-14T08:14:43Z<p><a href="http://rads.stackoverflow.com/amzn/click/0201914654" rel="nofollow" title="Hacker's Delight">Hacker's Delight</a> suggests a loop-unrolled binary search. Not pretty, but fast for sparse unset bits because it skips dwords/bytes/nibbles/etc. with every bit set.</p>
<p>If you can get a Phenom with SSE4a (not Core2 Duo, unfortunately) you can use POPCNT to write a fast number-of-set-bits function. Then you can get the index of the next unset bit with:</p>
<pre><code>pop(x & (~x-1))
</code></pre>
<p><code>x & (~x-1)</code> clears the set bits above the next zero bit; then you just have to count the remaining bits with POPCNT.</p>
<p>Here's a worked example with a byte:</p>
<pre><code> 01101111 x
10010000 ~x
10001111 ~x-1
00001111 x & ~x-1
pop(00001111) => 4
</code></pre>
http://stackoverflow.com/questions/1420119/noclassdeffounderror-while-running-from-jar/1420167#14201670Answer by Dominic Cooney for NoClassDefFoundError while running from jarDominic Cooney2009-09-14T07:41:48Z2009-09-14T07:41:48Z<p>Which class is missing? Your Main-Class attribute looks a little suspect--is com.hamza.driver.ui a class or a package?</p>
http://stackoverflow.com/questions/1313411/six-degrees-of-kevin-bacon/1313507#13135073Answer by Dominic Cooney for six degrees of kevin baconDominic Cooney2009-08-21T18:18:22Z2009-08-21T18:18:22Z<p>This is basically a graph problem: Create a graph where the nodes are actors. There is an edge between two actors if the two actors have co-starred in a movie. Then you can use typical graph algorithms, such as <a href="http://en.wikipedia.org/wiki/Dijkstra%27s%5Falgorithm" rel="nofollow" title="Dijkstra's shortest path algorithm">Dijkstra's shortest path algorithm</a> to determine the minimum degree of separation between two actors. </p>
http://stackoverflow.com/questions/198520/how-to-best-prevent-csrf-attacks-in-a-gae-app/908348#9083482Answer by Dominic Cooney for How to best prevent CSRF attacks in a GAE app?Dominic Cooney2009-05-25T23:16:50Z2009-05-25T23:16:50Z<p>When you generate the page that lets the user delete an object, generate a random token and include it in a hidden form field. Also set a HTTP-only cookie with that value. When you receive a delete request, check that the random token from the form and the value from the cookie match.</p>
<p>Your random token shouldn't just be a random number. You should encrypt the combination of a random number and the user's identity, to make it difficult for attackers to forge their own tokens. You should also use different encryption keys for the value stored in the form and the value stored in the cookie, so if one of the tokens does leak, it is still difficult for an attacker to forge the other token.</p>
<p>This approach verifies that the delete request originates from your form, by the presence of the security token in the form; and doesn't require writing to the datastore.</p>
<p>This approach is still vulnerable to cross-site scripting attacks, where an attacker could retrieve the hidden value from the form or submit the form, so thoroughly test your site for cross-site scripting vulnerabilities. This approach is also vulnerable to <a href="http://en.wikipedia.org/wiki/Clickjacking" rel="nofollow" title="clickjacking">"clickjacking"</a> attacks.</p>
http://stackoverflow.com/questions/5628/is-there-a-way-to-include-a-fragment-identifier-when-using-asp-net-mvc-actionlink/7151#71512Answer by Dominic Cooney for Is there a way to include a fragment identifier when using Asp.Net MVC ActionLink, RedirectToAction, etc. ?Dominic Cooney2008-08-10T10:22:59Z2009-05-19T03:55:19Z<p>The short answer is: No. In ASP.NET MVC Preview 3 there's no first-class way for including an anchor in an action link. Unlike Rails' url_for :anchor, UrlHelper.GenerateUrl (and ActionLink, RedirectToAction and so on which use it) don't have a magic property name that lets you encode an anchor.</p>
<p>As you point out, you could roll your own that does. This is probably the cleanest solution.</p>
<p>Hackily, you could just include an anchor in a route and specify the value in your parameters hash:</p>
<pre><code>routes.MapRoute("WithTarget", "{controller}/{action}/{id}#{target}");
...
<%= Html.ActionLink("Home", "Index", new { target = "foo" })%>
</code></pre>
<p>This will generate a URL like /Home/Index/#foo. Unfortunately this doesn't play well with URL parameters, which appear at the end of the URL. So this hack is only workable in really simple circumstances where all of your parameters appear as URL path components.</p>
http://stackoverflow.com/questions/880329/functional-learning-woes/880614#8806141Answer by Dominic Cooney for Functional learning woesDominic Cooney2009-05-19T01:39:17Z2009-05-19T01:39:17Z<p>Firstly, although <code>factorcalc</code> is "ugly", you could add a wrapper function <code>factors' x = factorscalc x 2 []</code>, add a comment, and move on.</p>
<p>If you want to make a 'beautiful' <code>factors</code> fast, you need to find out why it is slow. Looking at your two functions, <code>factors</code> walks the list about <em>n</em>/2 elements long, but <code>factorcalc</code> stops after around <code>sqrt n</code> iterations.</p>
<p>Here is another <code>factors</code> that also stops after about <code>sqrt n</code> iterations, but uses a fold instead of explicit iteration. It also breaks the problem into three parts: finding the factors (<code>factor</code>); stopping at the square root of <em>x</em> (<code>small</code>) and then computing pairs of factors (<code>factorize</code>):</p>
<pre>
factors' :: (Integral a) => a -> [a]
factors' x = sort (foldl factorize [] (takeWhile small (filter factor [2..])))
where
factor z = x `mod` z == 0
small z = z <= (x `div` z)
factorize acc z = z : (if z == y then acc else y : acc)
where y = x `div` z
</pre>
<p>This is marginally faster than <code>factorscalc</code> on my machine. You can fuse <code>factor</code> and <code>factorize</code> and it is about twice as fast as <code>factorscalc</code>.</p>
<p>The <a href="http://book.realworldhaskell.org/read/profiling-and-optimization.html" rel="nofollow">Profiling and Optimization chapter of Real World Haskell</a> is a good guide to the GHC suite's performance tools for tackling tougher performance problems.</p>
<p>By the way, I have a minor style nitpick with <code>factorscalc</code>: it is much more efficient to prepend single elements to the front of a list O(1) than it is to append to the end of a list of length <em>n</em> O(n). The lists of factors are typically small, so it is not such a big deal, but <code>factorcalc</code> should probably be something like:</p>
<pre>
factorcalc :: (Integral a) => a -> a -> [a] -> [a]
factorcalc x y z
| y `elem` z = sort z
| x `mod` y == 0 = factorcalc x (y+1) (y : (x `div` y) : z)
| otherwise = factorcalc x (y+1) z
</pre>
http://stackoverflow.com/questions/483789/ocmock-make-a-stub-do-something/518587#5185870Answer by Dominic Cooney for OCMock: Make a stub do somethingDominic Cooney2009-02-06T00:08:21Z2009-02-06T00:08:21Z<p>My original answer was off-track: OCMock doesn't support this! If you wanted to change OCMock to support this, you would need to do something like adding a <code>BOOL returnValueIsFromInvocation</code> field to OCMockRecorder, and add a method to set this up:</p>
<pre>
- (id)andReturnResultOfInvocation:(NSInvocation *)anInvocation {
returnValueIsFromInvocation = YES;
returnValueIsBoxed = NO;
returnValueShouldBeThrown = NO;
[returnValue autorelease];
returnValue = [anInvocation retain];
return self;
}
</pre>
<p>Then teach <code>setUpReturnValue</code> to call the invocation (changes are in bold):</p>
<pre>
- (void)setUpReturnValue:(NSInvocation *)anInvocation
{
<b>if (returnValueIsFromInvocation) {
NSInvocation *returnValueInvocation = (NSInvocation *)returnValue;
[returnValueInvocation invoke];
void *buffer = malloc([[anInvocation methodSignature] methodReturnLength]);
[returnValueInvocation getValue:buffer];
[anInvocation setReturnValue:buffer];
free(buffer);
}
else</b> if(returnValueShouldBeThrown)
{
@throw returnValue;
}
else if(returnValueIsBoxed)
{
if(strcmp([[anInvocation methodSignature] methodReturnType],
[(NSValue *)returnValue objCType]) != 0)
[NSException raise:NSInvalidArgumentException
format:@"Return value does not match method signature."];
void *buffer = malloc([[anInvocation methodSignature] methodReturnLength]);
[returnValue getValue:buffer];
[anInvocation setReturnValue:buffer];
free(buffer);
}
else
{
const char *returnType = [[anInvocation methodSignature] methodReturnType];
const char *returnTypeWithoutQualifiers = returnType + (strlen(returnType) - 1);
if(strcmp(returnTypeWithoutQualifiers, @encode(id)) == 0)
[anInvocation setReturnValue:&returnValue];
}
}
</pre>
<p>This change is difficult to do by introducing subclasses because you have to override the methods that return OCMockRecorders (like <code>stub</code>, <code>expect</code> and so on) but the concrete subclasses of OCMockObject (OCClassMockObject and OCProtocolMockObject) are hidden by the framework.</p>
http://stackoverflow.com/questions/337796/what-video-game-have-you-played-that-made-you-think-the-most-like-a-programmer/339450#3394503Answer by Dominic Cooney for What video game have you played that made you think the most like a programmer.Dominic Cooney2008-12-04T02:31:53Z2008-12-04T02:31:53Z<p>NetHack.</p>
<p>Every programmer needs to know how to navigate narrow, twisty passages; even while halu.</p>
http://stackoverflow.com/questions/7121/what-should-a-software-engineer-read-before-branching-out-on-their-own12What should a software engineer read before branching out on their own?Dominic Cooney2008-08-10T09:09:15Z2008-09-22T14:10:41Z
<p>I'm a software engineer living vicariously through the <a href="http://venturevoice.com/" rel="nofollow" title="Venture Voice entrepreneur podcast">Venture Voice</a> podcast and books like Founders at Work. What should I read before I branch out and try to write and sell software on my own?</p>
http://stackoverflow.com/questions/29437/whats-the-best-way-to-shift-an-array-of-bytes-by-12-bits/29532#295320Answer by Dominic Cooney for Whats the best way to shift an array of bytes by 12-bits?Dominic Cooney2008-08-27T04:43:40Z2008-08-27T05:15:40Z<p>There are a couple of edge-cases which make this a neat problem:</p>
<ul>
<li>the input array might be empty</li>
<li>the last and next-to-last bits need to be treated specially, because they have zero bits shifted into them</li>
</ul>
<p>Here's a simple solution which loops over the array copying the low-order nibble of the next byte into its high-order nibble, and the high-order nibble of the next-next (+2) byte into its low-order nibble. To save dereferencing the look-ahead pointer twice, it maintains a two-element buffer with the "last" and "next" bytes: </p>
<pre><code>void shl12(uint8_t *v, size_t length) {
if (length == 0) {
return; // nothing to do
}
if (length > 1) {
uint8_t last_byte, next_byte;
next_byte = *(v + 1);
for (size_t i = 0; i + 2 < length; i++, v++) {
last_byte = next_byte;
next_byte = *(v + 2);
*v = ((last_byte & 0x0f) << 4) | (((next_byte) & 0xf0) >> 4);
}
// the next-to-last byte is half-empty
*(v++) = (next_byte & 0x0f) << 4;
}
// the last byte is always empty
*v = 0;
}
</code></pre>
<p>Consider the boundary cases, which activate successively more parts of the function:</p>
<ul>
<li>When <code>length</code> is zero, we bail out without touching memory.</li>
<li>When <code>length</code> is one, we set the one and only element to zero.</li>
<li>When <code>length</code> is two, we set the high-order nibble of the first byte to low-order nibble of the second byte (that is, bits 12-16), and the second byte to zero. We don't activate the loop.</li>
<li>When <code>length</code> is greater than two we hit the loop, shuffling the bytes across the two-element buffer.</li>
</ul>
<p>If efficiency is your goal, the answer probably depends largely on your machine's architecture. Typically you should maintain the two-element buffer, but handle a machine word (32/64 bit unsigned integer) at a time. If you're shifting a lot of data it will be worthwhile treating the first few bytes as a special case so that you can get your machine word pointers word-aligned. Most CPUs access memory more efficiently if the accesses fall on machine word boundaries. Of course, the trailing bytes have to be handled specially too so you don't touch memory past the end of the array.</p>
http://stackoverflow.com/questions/7121/what-should-a-software-engineer-read-before-branching-out-on-their-own/7268#72689Answer by Dominic Cooney for What should a software engineer read before branching out on their own?Dominic Cooney2008-08-10T18:01:44Z2008-08-11T22:15:23Z<p>OK, to summarize (in no particular order):</p>
<ul>
<li><a href="http://www.joelonsoftware.com/articles/FogCreekMBACurriculum.html" rel="nofollow" title="Reading List: Fog Creek Software Management Training Program">The reading list</a> of Fog Creek's software management training program.</li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0971187304" rel="nofollow" title="Bootstrap">Bootstrap: Lessons Learned Building a Successful Company from Scratch</a></li>
<li>Bob Walsh' <a href="http://tinyurl.com/5svkg2" rel="nofollow" title="Micro-ISV: From Vision to Reality">Micro-ISV book,</a> and <a href="http://www.bignerdranch.com/classes/microisv/startup.shtml" rel="nofollow" title="MicroISV/Startup Bootcamp">the Big Nerd Ranch MicroISV/Startup Bootcamp</a> he leads.</li>
<li><a href="http://discuss.joelonsoftware.com/?biz" rel="nofollow" title="The Business of Software forum">The Business of Software</a> forum.</li>
<li>Eric Sink's <a href="http://www.ericsink.com/bos/Business_of_Software.html" rel="nofollow" title="Eric Sink on the Business of Software">Business of Software</a> blog posts.</li>
</ul>
<p>Thanks for your responses!</p>
http://stackoverflow.com/questions/8265/unit-of-work-pattern-in-net/8278#82783Answer by Dominic Cooney for Unit of Work Pattern in .NetDominic Cooney2008-08-11T22:12:41Z2008-08-11T22:12:41Z<p>It sounds like implementing repositories would work really well here. There are good concrete examples in Java that you could port to C# or Visual Basic. Fowler's <a href="http://rads.stackoverflow.com/amzn/click/0321127420" rel="nofollow" title="Patterns of Enterprise Application Architecture">Patterns of Enterprise Application Architecture</a> has a good <a href="http://books.google.com/books?id=FyWZt5DdvFkC&pg=PT211&dq=patterns+of+enterprise+architecture+unit+of+work&ei=m7egSOX_Lof0sQPZ7omeBQ&sig=ACfU3U1bQUl0WtBc3UrGda2ipSvt-RkmyA#PPT211,M1" rel="nofollow">discussion</a> with examples in Java. <a href="http://rads.stackoverflow.com/amzn/click/0321125215" rel="nofollow" title="Domain-Driven Design">Domain-Driven Design</a> has a deeper discussion if you wanted more theory.</p>
http://stackoverflow.com/questions/7252/how-to-make-junior-programmers-write-tests/7276#72761Answer by Dominic Cooney for How to make junior programmers write tests?Dominic Cooney2008-08-10T18:19:17Z2008-08-10T18:19:17Z<p>If your colleague lacks experience writing tests maybe he or she is having difficulty testing beyond simple situations, and that is manifesting itself as inadequate testing. Here's what I would try:</p>
<ul>
<li>Spend some time and share testing techniques, like dependency injection, looking for edge cases, and so on with your colleague.</li>
<li>Offer to answer questions about testing.</li>
<li>Do code reviews of tests for a while. Ask your colleague to review changes of yours that are exemplary of good testing. Look at their comments to see if they're really reading and understanding your test code.</li>
<li>If there are books that fit particularly well with your team's testing philosophy give him or her a copy. It might help if your code review feedback or discussions reference the book so he or she has a thread to pick up and follow.</li>
</ul>
<p>I wouldn't especially emphasize the shame/guilt factor. It is worth pointing out that testing is a widely adopted, good practice and that writing and maintaining good tests is a professional courtesy so your team mates don't need to spend their weekends at work, but I wouldn't belabor those points.</p>
<p>If you really need to "get tough" then institute an impartial system; nobody likes to feel like they're being singled out. For example your team might require code to maintain a certain level of test coverage (able to be gamed, but at least able to be automated); require new code to have tests; require reviewers to consider the quality of tests when doing code reviews; and so on. Instituting that system should come from team consensus. If you moderate the discussion carefully you might uncover other underlying reasons your colleague's testing isn't what you expect.</p>
http://stackoverflow.com/questions/7118/debugging-javascript-in-internet-explorer-and-safari/7129#71295Answer by Dominic Cooney for Debugging Javascript in Internet Explorer and SafariDominic Cooney2008-08-10T09:24:56Z2008-08-10T09:24:56Z<p>For Safari you need to enable the "Develop" menu via Preferences (in Safari 3.1; see <a href="http://developer.apple.com/internet/safari/faq.html#anchor14" rel="nofollow" title="Drosera">the entry in Apple's Safari development FAQ</a>) or via</p>
<pre><code>$ defaults write com.apple.Safari IncludeDebugMenu 1
</code></pre>
<p>at the terminal in Mac OS X. Then from the Develop menu choose Show Web Inspector and click on the Console link. Your script can write to the console using window.console.log.</p>
<p>For Internet Explorer, Visual Studio is really the best script debugger but the Microsoft Script Debugger is okay if you don't have Visual Studio. <a href="http://blogs.msdn.com/ie/archive/2004/10/26/247912.aspx" rel="nofollow" title="Scripting Debugging in Internet Explorer">This post on the IE team blog</a> walks you through installing it and connecting to Internet Explorer.</p>
<p>Internet Explorer 8 <a href="http://www.west-wind.com/weblog/posts/271352.aspx" rel="nofollow">looks</a> like it will have a very fancy script debugger, so if you're feeling really adventurous you could install the Internet Explorer 8 beta and give that a whirl.</p>
http://stackoverflow.com/questions/7095/is-the-c-static-constructor-thread-safe/7104#71040Answer by Dominic Cooney for Is the C# static constructor thread safe?Dominic Cooney2008-08-10T08:45:57Z2008-08-10T08:59:14Z<p>The <a href="http://www.ecma-international.org/publications/standards/Ecma-335.htm" rel="nofollow" title="Modern Compiler Implementation in Java">Common Language Infrastructure specification</a> guarantees that "a type initializer shall run exactly once for any given type, unless explicitly called by user code." (Section 9.5.3.1.) So unless you have some whacky IL on the loose calling Singleton::.cctor directly (unlikely) your static constructor will run exactly once before the Singleton type is used, only one instance of Singleton will be created, and your Instance property is thread-safe.</p>
<p>Note that if Singleton's constructor accesses the Instance property (even indirectly) then the Instance property will be null. The best you can do is detect when this happens and throw an exception, by checking that instance is non-null in the property accessor. After your static constructor completes the Instance property will be non-null.</p>
<p>As <a href="http://beta.stackoverflow.com/questions/7095#7105" rel="nofollow" title="Modern Compiler Implementation in C">Zoomba's answer</a> points out you will need to make Singleton safe to access from multiple threads, or implement a locking mechanism around using the singleton instance.</p>
http://stackoverflow.com/questions/6890/compact-framework-how-to-wait-for-thread-complete-before-continuing/7101#71013Answer by Dominic Cooney for Compact Framework - how to wait for thread complete before continuing?Dominic Cooney2008-08-10T08:37:28Z2008-08-10T08:37:28Z<p>How much order do you need to impose on the threads? If you just need all of the work started in the loop to finish before the code continues, but you don't care about the order the work within the loop finishes, then calling Join is the answer. To add more detail to <a href="http://beta.stackoverflow.com/questions/6890/compact-framework-how-to-wait-for-thread-complete-before-continuing#6935" rel="nofollow" title="Modern Compiler Implementation in ML">Kevin Kenny's answer,</a> you should call Join <em>outside</em> the loop. This means you will need a collection to hold references to the threads you started:</p>
<pre><code>// Start all of the threads.
List<Thread> startedThreads = new List<Thread>();
foreach (...) {
Thread thread = new Thread(new ThreadStart(MyMethod));
thread.Start();
startedThreads.Add(thread);
}
// Wait for all of the threads to finish.
foreach (Thread thread in startedThreads) {
thread.Join();
}
</code></pre>
<p>In contrast, if you called Join inside the loop, the result would basically be the same as not using threads at all. Each iteration of the loop body would create and start a thread but then immediately Join it and wait for it to finish.</p>
<p>If the individual threads produce some result (write a message in a log, for example) then the messages may still appear out of order because there's no coordination between the threads. It is possible to get the threads to output their results in order by coordinating them with a Monitor.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/7085#708512Answer by Dominic Cooney for Learning to write a compilerDominic Cooney2008-08-10T07:54:32Z2008-08-10T07:54:32Z<p>I think <a href="http://rads.stackoverflow.com/amzn/click/0521607647" rel="nofollow" title="Modern Compiler Implementation in ML">Modern Compiler Implementation in ML</a> is the best introductory compiler writing text. There's a <a href="http://rads.stackoverflow.com/amzn/click/052182060X" rel="nofollow" title="Modern Compiler Implementation in Java">Java version</a> and a <a href="http://rads.stackoverflow.com/amzn/click/0521607655" rel="nofollow" title="Modern Compiler Implementation in C">C version</a> too, either of which might be more accessible given your languages background. The book packs a lot of useful basic material (scanning and parsing, semantic analysis, activation records, instruction selection, RISC and x86 native code generation) and various "advanced" topics (compiling OO and functional languages, polymorphism, garbage collection, optimization and single static assignment form) into relatively little space (~500 pages).</p>
<p>I prefer Modern Compiler Implementation to the Dragon book because Modern Compiler implementation surveys less of the field--instead it has really solid coverage of all the topics you would need to write a serious, decent compiler. After you work through this book you'll be ready to tackle research papers directly for more depth if you need it.</p>
<p>I must confess I have a serious soft spot for Niklaus Wirth's <a href="http://rads.stackoverflow.com/amzn/click/0201403536" rel="nofollow" title="Compiler Construction">Compiler Construction.</a> It is <a href="http://www-old.oberon.ethz.ch/WirthPubl/CBEAll.pdf" rel="nofollow" title="Compiler Construction (PDF)">available online</a> as a PDF. I find Wirth's programming aesthetic simply beautiful, however some people find his style too minimal (for example Wirth favors recursive descent parsers, but most CS courses focus on parser generator tools; Wirth's language designs are fairly conservative.) Compiler Construction is a very succinct distillation of Wirth's basic ideas, so whether you like his style or not or not, I highly recommend reading this book.</p>
http://stackoverflow.com/questions/3136/help-with-cron-jobs/7080#70804Answer by Dominic Cooney for Help with CRON jobs?Dominic Cooney2008-08-10T07:27:38Z2008-08-10T07:27:38Z<p>Following up on <a href="http://beta.stackoverflow.com/questions/3136/help-with-cronjobs#3145" rel="nofollow" title="Domain Specific Development with Visual Studio DSL Tools.">svrist's answer,</a> depending on your shell, the 2>&1 should go <em>after</em> > /dev/null or you will still see the output from stderr.</p>
<p>The following will silence both stdout and stderr:</p>
<pre><code>59 23 * * * /usr/sbin/myscript > /dev/null 2>&1
</code></pre>
<p>The following silences stdout, but stderr will still appear (via stdout):</p>
<pre><code>59 23 * * * /usr/sbin/myscript 2>&1 > /dev/null
</code></pre>
<p><a href="http://tldp.org/LDP/abs/html/io-redirection.html" rel="nofollow">The Advanced Bash Scripting Guide's chapter on IO redirection</a> is a good reference--search for 2>&1 to see a couple of examples.</p>
http://stackoverflow.com/questions/2092/how-to-get-started-writing-a-code-coverage-tool/7076#70763Answer by Dominic Cooney for How to get started "writing" a code coverage tool?Dominic Cooney2008-08-10T07:19:47Z2008-08-10T07:19:47Z<p>Is your scripting language bytecode generating? Does it generate debug metadata? If so, bytecode instrumentation is probably the way to go. In fact existing tools like will probably work; perhaps with minimal modification (the typical problem is the tools are written to work with Java and assume com.foo.Bar.class corresponds to com/foo/Bar.java. Unwinding that assumption can be tedious.) <a href="http://emma.sourceforge.net/" rel="nofollow" title="Domain Specific Development with Visual Studio DSL Tools.">EMMA</a> is a ClassLoader that does byte-code re-writing for code-coverage collection in Java. The coding style is a little funky, but I recommend reading the source for some ideas.</p>
<p>If your scripting language is interpreted then you will need something higher-level (source level) that hooks into the interpreter.</p>
http://stackoverflow.com/questions/502/get-a-preview-jpeg-of-a-pdf-on-windows/7073#70730Answer by Dominic Cooney for Get a preview jpeg of a pdf on windows?Dominic Cooney2008-08-10T07:10:19Z2008-08-10T07:10:19Z<p>Is the PC likely to have Acrobat installed? I think Acrobat installs a shell extension so previews of the first page of a PDF document appear in Windows Explorer's thumbnail view. You can get thumbnails yourself via the IExtractImage COM API, which you'll need to wrap. <a href="http://www.vbaccelerator.com/home/net/code/libraries/shell_projects/Thumbnail_Extraction/article.asp" rel="nofollow" title="Domain Specific Development with Visual Studio DSL Tools.">VBAccelerator has an example in C#</a> that you could port to Python.</p>
http://stackoverflow.com/questions/4458/domain-specific-language-resources/7070#70704Answer by Dominic Cooney for Domain Specific Language resourcesDominic Cooney2008-08-10T06:59:42Z2008-08-10T06:59:42Z<p>The architects of the DSL Tools team wrote a book, <a href="http://tinyurl.com/573bok" rel="nofollow" title="Domain Specific Development with Visual Studio DSL Tools.">Domain-Specific Development with Visual Studio DSL Tools.</a> The book's <a href="http://www.domainspecificdevelopment.com/" rel="nofollow">website</a> has some other links and resources.</p>
http://stackoverflow.com/questions/2084/can-you-recommend-a-good-css-online-resource-or-book/7062#70622Answer by Dominic Cooney for Can you recommend a good CSS online resource or book?Dominic Cooney2008-08-10T06:00:47Z2008-08-10T06:00:47Z<p><a href="http://tinyurl.com/64phhy" rel="nofollow" title="CSS Mastery">CSS Mastery</a> concisely explains the fundamentals of CSS. Its presentation of the box model is great. It also covers a couple of popular techniques (like rounded-corner rectangles and "liquid" layouts) and browser-specific hacks--so it is a good mix of theory and pragmatics. </p>
<p>Reading this book definitely helped me escape from "edit, F5, repeat" CSS development and be able to predict how stylesheet changes will affect a page. CSS development is much faster when you can look at a broken layout and know what aspect of a stylesheet will likely need to be changed, instead of commenting out style rules or digging through Firebug (although sometimes that is appropriate too.)</p>
<p>If you are a member of the ACM Digital Library the full text of the book is available online there.</p>
http://stackoverflow.com/questions/427532/what-do-you-do-when-youre-stuck/427547#427547Comment by Dominic Cooney on What do you do when you're stuck?Dominic Cooney2009-10-25T22:03:05Z2009-10-25T22:03:05ZThat's one attraction to open source software stacks. At least it's possible to see what's going on at every level of the stack.http://stackoverflow.com/questions/1620266/code-generator-in-cComment by Dominic Cooney on Code generator in C#Dominic Cooney2009-10-25T07:38:08Z2009-10-25T07:38:08ZCan you be more specific? Can you give an example of an input and a couple of outputs of the "multi-language code generator"?http://stackoverflow.com/questions/1517239/syntax-coloring-for-cocoa-app/1517279#1517279Comment by Dominic Cooney on Syntax coloring for Cocoa appDominic Cooney2009-10-04T20:22:47Z2009-10-04T20:22:47ZGeshi is written in PHP. It would be tedious to integrate into a Cocoa app. Drilling through your second link; this is relevant: <a href="http://www.cocoadev.com/index.pl?ImplementSyntaxHighlighting" rel="nofollow">cocoadev.com/index.pl?ImplementSyntaxHighlighting/…</a>http://stackoverflow.com/questions/1517239/syntax-coloring-for-cocoa-app/1517275#1517275Comment by Dominic Cooney on Syntax coloring for Cocoa appDominic Cooney2009-10-04T20:19:52Z2009-10-04T20:19:52ZThis is an application that syntax-highlights code. The questioner wants to make the application he or she is writing highlight code.http://stackoverflow.com/questions/1303680/do-you-have-a-mnemonic-for-remembering-the-meaning-of-car-and-cdr/1303711#1303711Comment by Dominic Cooney on Do you have a mnemonic for remembering the meaning of car and cdr?Dominic Cooney2009-09-22T17:30:36Z2009-09-22T17:30:36ZThis isn't really a mnemonic because there's nothing mnemonic about address=first and decrement=last.http://stackoverflow.com/questions/5628/is-there-a-way-to-include-a-fragment-identifier-when-using-asp-net-mvc-actionlink/30614#30614Comment by Dominic Cooney on Is there a way to include a fragment identifier when using Asp.Net MVC ActionLink, RedirectToAction, etc. ?Dominic Cooney2009-05-19T03:54:43Z2009-05-19T03:54:43ZI tried targets in routes with ASP.NET MVC Preview 3 and there was no problem with routing. So although you're "almost positive" it would be useful for you to elaborate on what issues there will be.http://stackoverflow.com/questions/196357/making-iterm-to-translate-meta-key-in-the-same-way-as-in-other-oses/197092#197092Comment by Dominic Cooney on Making iTerm to translate 'meta-key' in the same way as in other OSesDominic Cooney2009-05-11T06:42:36Z2009-05-11T06:42:36ZIt looks like your input language has to be U.S. for the +ESC option to work. +ESC didn't work for me when I had the Japanese/Romaji input method selected, but it started to work once I switched the input language to U.S.http://stackoverflow.com/questions/106431/what-makes-ometa-special/355501#355501Comment by Dominic Cooney on What makes Ometa special?Dominic Cooney2009-02-16T17:50:45Z2009-02-16T17:50:45ZPresumably you can't have both left recursion and linear parse times, though?http://stackoverflow.com/questions/484796/more-efficient-way-to-determine-if-a-string-starts-with-a-token-from-a-set-of-tok/484845#484845Comment by Dominic Cooney on More efficient way to determine if a string starts with a token from a set of tokens?Dominic Cooney2009-01-27T19:33:42Z2009-01-27T19:33:42ZI like this approach too.http://stackoverflow.com/questions/484566/need-ideas-on-a-case-studyComment by Dominic Cooney on Need Ideas on a case studyDominic Cooney2009-01-27T18:34:59Z2009-01-27T18:34:59ZDo your own homework.http://stackoverflow.com/questions/29437/whats-the-best-way-to-shift-an-array-of-bytes-by-12-bits/29492#29492Comment by Dominic Cooney on Whats the best way to shift an array of bytes by 12-bits?Dominic Cooney2008-09-12T17:18:35Z2008-09-12T17:18:35ZThis will dereference past the end of the array when the array is zero-length or only contains a single byte.