User Brian Campbell - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T17:46:32Zhttp://stackoverflow.com/feeds/user/69755http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1926164/innosetup-getting-appname-in-code-section1InnoSetup: Getting AppName in [Code] sectionBrian Campbell2009-12-18T03:49:09Z2009-12-21T01:03:30Z
<p>I'm creating an installer using <a href="http://www.jrsoftware.org/isinfo.php" rel="nofollow">InnoSetup</a>, and writing some custom handlers in a <code>[Code]</code> section. In one of the handlers, I would like to be able to retrieve the value of the <code>AppName</code> (or, potentially, the value of other parameters) defined in the <code>[Setup]</code> section. Is there a way for me to do this? I've looked though the <a href="http://www.jrsoftware.org/ishelp/" rel="nofollow">documentation</a>, but I haven't found anything that would allow me to do this. Our InnoSetup files are actually generated by our build process, which stitches together fragments that are common between all of our programs and that are program specific, so it would be inconvenient to have to define constants in the code for each program. Is there any convenient way to do this?</p>
<p>I'm looking for something like</p>
<pre><code>MyString := ExpandConstant('{AppName}');
</code></pre>
<p>Except <code>{AppName}</code> is not a defined constant. Is there some way to query for parameters defined in the <code>[Setup]</code> section?</p>
http://stackoverflow.com/questions/1934071/sprintfbuf-20g-x-how-large-should-buf-be/1934184#19341840Answer by Brian Campbell for sprintf(buf, "%.20g", x) // how large should buf be?Brian Campbell2009-12-19T21:23:46Z2009-12-19T21:23:46Z<p>If you are on a platform that supports POSIX or C99, you should be able to use <a href="http://www.opengroup.org/onlinepubs/009695399/functions/snprintf.html" rel="nofollow"><code>snprintf</code></a> to compute the size of the buffer you will need. <code>snprintf</code> takes a parameter indicating the size of the buffer you are passing in; if the size of the string would exceed the size of that buffer, it truncates the output to fit into the buffer, and returns the amount of space it would have needed to fit the entire output. You can use the output of this to allocate a buffer that's the exact right size. If you just want to compute the size of the buffer you need, you can pass in NULL as the buffer and a size of 0 to compute how much space you need.</p>
<pre><code>int size = snprintf(NULL, 0, "%.20g", x);
char *buf = malloc(size + 1); // Need the + 1 for a terminating null character
snprintf(buf, size + 1, "%.20g", x);
</code></pre>
<p>Remember to <code>free(buf)</code> after you've used it to avoid memory leaks.</p>
<p>The problem with this is that it won't work in Visual Studio, which still does not support C99. While they have <a href="http://msdn.microsoft.com/en-us/library/f30dzcf6%28VS.80%29.aspx" rel="nofollow">something like <code>snprintf</code></a>, if the buffer passed in is too small, it does not return the size needed, but returns <code>-1</code> instead, which is completely useless (and it does not accept <code>NULL</code> as a buffer, even with a <code>0</code> length).</p>
<p>If you don't mind truncating, you can simply use <code>snprintf</code> with a fixed size buffer, and be assured that you won't overflow it:</p>
<pre><code>char buf[30];
snprintf(buf, sizeof(buf), "%.20g", x);
</code></pre>
<p>Make sure you check your platform docs on <code>snprintf</code>; in particular, some platforms may not add a terminating null at the end of the string if the string is truncated, so you may need to do that yourself.</p>
http://stackoverflow.com/questions/1934051/regex-help-with-splitting-string/1934105#19341050Answer by Brian Campbell for Regex help with splitting stringBrian Campbell2009-12-19T20:52:26Z2009-12-19T20:52:26Z<p>I'm not sure what language you're looking for, but in Ruby you can just use <code>[String#split</code>][1] (and you don't need a regexp, a simple string parameter will do):</p>
<pre><code>>> strings = ["kev-+kvs+-one-+gdl+-greg-+kvs+-two-+gdl+-les-+kvs+-three",
"-+gdl+-kev-+kvs+-one-+gdl+-greg-+kvs+-two-+gdl+-les-+kvs+-three",
"kev-+kvs+-one-+gdl+-greg-+kvs+-two-+gdl+-les-+kvs+-three-+gdl+-"]
>> split = strings.map {|s| s.split "-+gdl+-"}
=> [["kev-+kvs+-one", "greg-+kvs+-two", "les-+kvs+-three"],
["", "kev-+kvs+-one", "greg-+kvs+-two", "les-+kvs+-three"],
["kev-+kvs+-one", "greg-+kvs+-two", "les-+kvs+-three"]]
</code></pre>
<p>Note that this does have the problem of introducing null fields at the beginning or in the middle of your string. If you don't want any null fields, you'll probably have to filter those out afterwards:</p>
<pre><code>>> split.map {|a| a.reject {|s| s == ""}}
=> [["kev-+kvs+-one", "greg-+kvs+-two", "les-+kvs+-three"],
["kev-+kvs+-one", "greg-+kvs+-two", "les-+kvs+-three"],
["kev-+kvs+-one", "greg-+kvs+-two", "les-+kvs+-three"]]
</code></pre>
<p>If you're not familiar with ruby, the <code>map</code> part is simply applying the same thing to each item in the array, so I can demonstrate how this applies to all of our examples.</p>
http://stackoverflow.com/questions/1926164/innosetup-getting-appname-in-code-section/1926709#19267092Answer by Brian Campbell for InnoSetup: Getting AppName in [Code] sectionBrian Campbell2009-12-18T06:40:41Z2009-12-19T19:29:25Z<p>Inspired by Craig's answer, I was looking at the Inno Setup Preprocessor documentation (in ISTool, not available online as far as I've found), and came across the <code>SetupSetting</code> function in the preprocessor.</p>
<p>It can be used as so:</p>
<pre><code>MyString := '{#SetupSetting("AppName")}';
</code></pre>
<p>And as long as the <code>[Setup]</code> section appears before the place where this is used (ISPP seems to be only one pass), and includes a definition for <code>AppName</code>, this will give the results I want, without having to define an extra macro for each setting we want to extract.</p>
http://stackoverflow.com/questions/1931332/multiline-form-in-html/1931351#19313511Answer by Brian Campbell for MultiLine Form in HTML ?Brian Campbell2009-12-18T23:51:48Z2009-12-18T23:51:48Z<p>Straight from the source, the <a href="http://www.w3.org/TR/html401/interact/forms.html#h-17.7" rel="nofollow">HTML 4.01 standard</a>:</p>
<blockquote>
<p>This example creates a TEXTAREA control that is 20 rows by 80 columns and contains two lines of text initially. The TEXTAREA is followed by submit and reset buttons.</p>
<pre><code><FORM action="http://somesite.com/prog/text-read" method="post">
<P>
<TEXTAREA name="thetext" rows="20" cols="80">
First line of initial text.
Second line of initial text.
</TEXTAREA>
<INPUT type="submit" value="Send"><INPUT type="reset">
</P>
</FORM>
</code></pre>
</blockquote>
http://stackoverflow.com/questions/891643/twitter-image-encoding-challenge332Twitter image encoding challengeBrian Campbell2009-05-21T06:37:52Z2009-12-11T22:29:46Z
<p><em>If a picture's worth 1000 words, how much of a picture can you fit in 140 characters?</em></p>
<p><strong>Note</strong>: That's it folks! Bounty deadline is here, and after some tough deliberation, I have decided that <a href="http://stackoverflow.com/questions/891643/twitter-image-encoding-challenge/929360#929360">Boojum's entry</a> just barely edged out <a href="http://stackoverflow.com/questions/891643/twitter-image-encoding-challenge/904874#904874">Sam Hocevar's</a>. I will post more detailed notes once I've had a chance to write them up. Of course, everyone should feel free to continue to submit solutions and improve solutions for people to vote on. Thank you to everyone who submitted and entry; I enjoyed all of them. This has been a lot of fun for me to run, and I hope it's been fun for both the entrants and the spectators.</p>
<p>I came across <a href="http://www.flickr.com/photos/quasimondo/3518306770/in/set-72057594062596732/" rel="nofollow">this interesting post</a> about trying to compress images into a Twitter comment, and lots of people in that thread (and a <a href="http://www.reddit.com/r/programming/comments/8lwmw/guy%5Fencodes%5Fan%5Fimage%5Fin%5Fa%5Fsingle%5Ftweet140%5Fchars/" rel="nofollow">thread on Reddit</a>) had suggestions about different ways you could do it. So, I figure it would make a good coding challenge; let people put their money where their mouth is, and show how their ideas about encoding can lead to more detail in the limited space that you have available.</p>
<p>I challenge you to come up with a general purpose system for encoding images into 140 character Twitter messages, and decoding them into an image again. You can use Unicode characters, so you get more than 8 bits per character. Even allowing for Unicode characters, however, you will need to compress images into a very small amount of space; this will certainly be a lossy compression, and so there will have to be subjective judgements about how good each result looks.</p>
<p>Here is the result that the original author, <a href="http://www.flickr.com/photos/quasimondo/" rel="nofollow">Quasimondo</a>, got from his encoding (image is licensed under a <a href="http://creativecommons.org/licenses/by-nc/2.0/deed.en" rel="nofollow">Creative Commons Attribution-Noncommercial license</a>):
<img src="http://farm4.static.flickr.com/3346/3518306770%5F1de2bc2970.jpg?v=0" alt="Mona Lisa"></p>
<p>Can you do better?</p>
<h3>Rules</h3>
<ol>
<li>Your program must have two modes: <strong>encoding</strong> and <strong>decoding</strong>.</li>
<li>When <strong>encoding</strong>:
<ol>
<li>Your program must take as input a graphic in any reasonable <strong>raster</strong> graphic format of your choice. We'll say that any raster format supported by <a href="http://www.imagemagick.org/script/formats.php" rel="nofollow">ImageMagick</a> counts as reasonable.</li>
<li>Your program must output a message which can be represented in 140 or fewer Unicode code points; 140 code points in the range <code>U+0000</code>–<code>U+10FFFF</code>, excluding non-characters (<code>U+FFFE</code>, <code>U+FFFF</code>, <code>U+</code><em>n</em><code>FFFE</code>, <code>U+</code><em>n</em><code>FFFF</code> where <em>n</em> is <code>1</code>–<code>10</code> hexadecimal, and the range <code>U+FDD0</code>–<code>U+FDEF</code>) and surrogate code points (<code>U+D800</code>–<code>U+DFFF</code>). It may be output in any reasonable encoding of your choice; any encoding supported by <a href="http://www.gnu.org/software/libiconv/" rel="nofollow">GNU <code>iconv</code></a> will be considered reasonable, and your platform native encoding or locale encoding would likely be a good choice. See <strong>Unicode notes</strong> below for more details.</li>
</ol></li>
<li>When <strong>decoding</strong>:
<ol>
<li>Your program should take as input the output of your <strong>encoding</strong> mode.</li>
<li>Your program must output an image in any reasonable format of your choice, as defined above, though for output vector formats are OK as well.</li>
<li>The image output should be an approximation of the input image; the closer you can get to the input image, the better.</li>
<li>The decoding process may have no access to any other output of the encoding process other than the output specified above; that is, you can't upload the image somewhere and output the URL for the decoding process to download, or anything silly like that.</li>
</ol></li>
<li><p>For the sake of consistency in user interface, your program must behave as follows:</p>
<ol>
<li>Your program must be a script that can be set to executable on a platform with the appropriate interpreter, or a program that can be compiled into an executable.</li>
<li>Your program must take as its first argument either <code>encode</code> or <code>decode</code> to set the mode.</li>
<li><p>Your program must take input in one or more of the following ways (if you implement the one that takes file names, you may also read and write from stdin and stdout if file names are missing):</p>
<ol>
<li><p>Take input from standard in and produce output on standard out.</p>
<pre><code>my-program encode <input.png >output.txt
my-program decode <output.txt >output.png
</code></pre></li>
<li><p>Take input from a file named in the second argument, and produce output in the file named in the third.</p>
<pre><code>my-program encode input.png output.txt
my-program decode output.txt output.png
</code></pre></li>
</ol></li>
</ol></li>
<li>For your solution, please post:
<ol>
<li>Your code, in full, and/or a link to it hosted elsewhere (if it's very long, or requires many files to compile, or something).</li>
<li>An explanation of how it works, if it's not immediately obvious from the code or if the code is long and people will be interested in a summary.</li>
<li>An example image, with the original image, the text it compresses down to, and the decoded image.</li>
<li>If you are building on an idea that someone else had, please attribute them. It's OK to try to do a refinement of someone else's idea, but you <strong>must</strong> attribute them.</li>
</ol></li>
</ol>
<h3>Guidelines</h3>
<p>These are basically rules that may be broken, suggestions, or scoring criteria:</p>
<ol>
<li>Aesthetics are important. I'll be judging, and suggest that other people judge, based on:
<ol>
<li>How good the output image looks, and how much it looks like the original.</li>
<li>How nice the text looks. Completely random gobbledigook is OK if you have a really clever compression scheme, but I also want to see answers that turn images into mutli-lingual poems, or something clever like that. Note that the author of the original solution decided to use only Chinese characters, since it looked nicer that way.</li>
<li>Interesting code and clever algorithms are always good. I like short, to the point, and clear code, but really clever complicated algorithms are OK too as long as they produce good results.</li>
</ol></li>
<li>Speed is also important, though not as important as how good a job compressing the image you do. I'd rather have a program that can convert an image in a tenth of a second than something that will be running genetic algorithms for days on end.</li>
<li>I will prefer shorter solutions to longer ones, as long as they are reasonably comparable in quality; conciseness is a virtue.</li>
<li>Your program should be implemented in a language that has a freely-available implementation on Mac OS X, Linux, or Windows. I'd like to be able to run the programs, but if you have a great solution that only runs under <a href="http://en.wikipedia.org/wiki/MATLAB" rel="nofollow">MATLAB</a> or something, that's fine.</li>
<li>Your program should be as general as possible; it should work for as many different images as possible, though some may produce better results than others. In particular:
<ol>
<li>Having a few images built into the program that it matches and writes a reference to, and then produces the matching image upon decoding, is fairly lame and will only cover a few images.</li>
<li>A program that can take images of simple, flat, geometric shapes and decompose them into some vector primitive is pretty nifty, but if it fails on images beyond a certain complexity it is probably insufficiently general.</li>
<li>A program that can only take images of a particular fixed aspect ratio but does a good job with them would also be OK, but not ideal.</li>
<li>You may find that a black and white image can get more information into a smaller space than a color image. On the other hand, that may limit the types of image it's applicable to; faces come out fine in black and white, but abstract designs may not fare so well.</li>
<li>It is perfectly fine if the output image is smaller than the input, while being roughly the same proportion. It's OK if you have to scale the image up to compare it to the original; what's important is how it looks.</li>
</ol></li>
<li>Your program should produce output that could actually go through Twitter and come out unscathed. This is only a guideline rather than a rule, since I couldn't find any documentation on the precise set of characters supported, but you should probably avoid control characters, funky invisible combining characters, private use characters, and the like.</li>
</ol>
<h3>Scoring rubric</h3>
<p>As a general guide to how I will be ranking solutions when choosing my accepted solution, lets say that I'll probably be evaluating solutions on a 25 point scale (this is very rough, and I won't be scoring anything directly, just using this as a basic guideline):</p>
<ul>
<li><strong>15 points</strong> for how well the encoding scheme reproduces a wide range of input images. This is a subjective, aesthetic judgement
<ul>
<li>0 means that it doesn't work at all, it gives the same image back every time, or something</li>
<li>5 means that it can encode a few images, though the decoded version looks ugly and it may not work at all on more complicated images</li>
<li>10 means that it works on a wide range of images, and produces pleasant looking images which may occasionally be distinguishable</li>
<li>15 means that it produces perfect replicas of some images, and even for larger and more complex images, gives something that is recognizable. Or, perhaps it does not make images that are quite recognizable, but produces beautiful images that are clearly derived from the original.</li>
</ul></li>
<li><strong>3 points</strong> for clever use of the Unicode character set
<ul>
<li>0 points for simply using the entire set of allowed characters</li>
<li>1 point for using a limited set of characters that are safe for transfer over Twitter or in a wider variety of situations</li>
<li>2 points for using a thematic subset of characters, such as only Han ideographs or only right-to-left characters</li>
<li>3 points for doing something really neat, like generating readable text or using characters that look like the image in question</li>
</ul></li>
<li><strong>3 points</strong> for clever algorithmic approaches and code style
<ul>
<li>0 points for something that is 1000 lines of code only to scale the image down, treat it as 1 bit per pixel, and base64 encode that</li>
<li>1 point for something that uses a standard encoding technique and is well written and brief</li>
<li>2 points for something that introduces a relatively novel encoding technique, or that is surprisingly short and clean</li>
<li>3 points for a one liner that actually produces good results, or something that breaks new ground in graphics encoding (if this seems like a low number of points for breaking new ground, remember that a result this good will likely have a high score for aesthetics as well)</li>
</ul></li>
<li><strong>2 points</strong> for speed. All else being equal, faster is better, but the above criteria are all more important than speed</li>
<li><strong>1 point</strong> for running on free (open source) software, because I prefer free software (note that C# will still be eligible for this point as long as it runs on Mono, likewise MATLAB code would be eligible if it runs on GNU Octave)</li>
<li><strong>1 point</strong> for actually following all of the rules. These rules have gotten a bit big and complicated, so I'll probably accept otherwise good answers that get one small detail wrong, but I will give an extra point to any solution that does actually follow all of the rules</li>
</ul>
<h3>Reference images</h3>
<p>Some folks have asked for some reference images. Here are a few reference images that you can try; smaller versions are embedded here, they all link to larger versions of the image if you need those:</p>
<p><a href="http://www.cs.cmu.edu/~chuck/lennapg/lena%5Fstd.tif" rel="nofollow"><img src="http://ephemera.continuation.org/stackoverflow/challenge/lena.png" alt="Lena" title="Lena"></a>
<a href="http://upload.wikimedia.org/wikipedia/commons/6/6a/Mona%5FLisa.jpg" rel="nofollow"><img src="http://ephemera.continuation.org/stackoverflow/challenge/mona-lisa.png" alt="Mona Lisa" title="Mona Lisa"></a>
<a href="http://upload.wikimedia.org/wikipedia/commons/2/24/Cornell%5Fbox.png" rel="nofollow"><img src="http://ephemera.continuation.org/stackoverflow/challenge/cornell-box.png" alt="Cornell Box" title="Cornell Box"></a>
<a href="http://ephemera.continuation.org/stackoverflow/challenge/so-logo.png" rel="nofollow"><img src="http://ephemera.continuation.org/stackoverflow/challenge/so-logo-small.png" alt="StackOverflow Logo" title="StackOverflow logo"></a></p>
<h3>Prize</h3>
<p>I am offering a <strong>500 rep bounty</strong> (plus the 50 that StackOverflow kicks in) for the solution that I like the best, based on the above criteria. Of course, I encourage everyone else to vote on their favorite solutions here as well.</p>
<h3>Note on deadline</h3>
<p>This contest will run until the bounty runs out, about 6 PM on Saturday, May 30. I can't say the precise time it will end; it may be anywhere from 5 to 7 PM. I will guarantee that I'll look at all entries submitted by 2 PM, and I will do my best to look at all entries submitted by 4 PM; if solutions are submitted after that, I may not have a chance to give them a fair look before I have to make my decision. Also, the earlier you submit, the more chance you will have for voting to be able to help me pick the best solution, so try and submit earlier rather than right at the deadline.</p>
<h3>Unicode notes</h3>
<p>There has also been some confusion on exactly what Unicode characters are allowed. The range of possible Unicode code points is <code>U+0000</code> to <code>U+10FFFF</code>. There are some code points which are never valid to use as Unicode characters in any open interchange of data; these are the <strong>noncharacters</strong> and the <strong>surrogate code points</strong>. Noncharacters are defined in the <a href="http://www.unicode.org/versions/Unicode5.0.0/ch16.pdf" rel="nofollow">Unidode Standard 5.1.0 section 16.7</a> as the values <code>U+FFFE</code>, <code>U+FFFF</code>, <code>U+</code><em>n</em><code>FFFE</code>, <code>U+</code><em>n</em><code>FFFF</code> where <em>n</em> is <code>1</code>–<code>10</code> hexadecimal, and the range <code>U+FDD0</code>–<code>U+FDEF</code>. These values are intended to be used for application-specific internal usage, and conforming applications may strip these characters out of text processed by them. Surrogate code points, defined in the <a href="http://www.unicode.org/versions/Unicode5.0.0/ch03.pdf" rel="nofollow">Unicode Standard 5.1.0 section 3.8</a> as <code>U+D800</code>–<code>U+DFFF</code>, are used for encoding characters beyond the Basic Multilingual Plane in UTF-16; thus, it is impossible to represent these code points directly in the UTF-16 encoding, and it is invalid to encode them in any other encoding. Thus, for the purpose of this contest, I will allow any program which encodes images into a sequence of no more than 140 Unicode code points from the range <code>U+0000</code>–<code>U+10FFFF</code>, excluding all noncharacters and surrogate pairs as defined above.</p>
<p>I will <em>prefer</em> solutions that use only assigned characters, and even better ones that use clever subsets of assigned characters or do something interesting with the character set they use. For a list of assigned characters, see the <a href="http://unicode.org/Public/UNIDATA/UnicodeData.txt" rel="nofollow">Unicode Character Database</a>; note that some characters are listed directly, while some are listed only as the start and end of a range. Also note that surrogate code points are listed in the database, but forbidden as mentioned above. If you would like to take advantage of certain properties of characters for making the text you output more interesting, there are a <a href="http://unicode.org/Public/UNIDATA/" rel="nofollow">variety of databases of character information</a> available, such as a <a href="http://unicode.org/Public/UNIDATA/Blocks.txt" rel="nofollow">list of named code blocks</a> and <a href="http://unicode.org/Public/UNIDATA/PropList.txt" rel="nofollow">various character properties</a>.</p>
<p>Since Twitter does not specify the exact character set they support, I will be lenient about solutions which do not actually work with Twitter because certain characters count extra or certain characters are stripped. It is preferred but not required that all encoded outputs should be able to be transferred unharmed via Twitter or another microblogging service such as <a href="http://identi.ca/" rel="nofollow">identi.ca</a>. I have seen some documentation stating that Twitter entity-encodes <, >, and &, and thus counts those as 4, 4, and 5 characters respectively, but I have not tested that out myself, and their JavaScript character counter doesn't seem to count them that way.</p>
<h3>Tips & Links</h3>
<ul>
<li>The definition of valid Unicode characters in the rules is a bit complicated. Choosing a single block of characters, such as CJK Unified Ideographs (U+4E00–U+9FCF) may be easier.</li>
<li>You may use existing image libraries, like <a href="http://www.imagemagick.org/" rel="nofollow">ImageMagick</a> or <a href="http://www.pythonware.com/products/pil/" rel="nofollow">Python Imaging Library</a>, for your image manipulation.</li>
<li>If you need some help understanding the Unicode character set and its various encodings, see <a href="http://www.azillionmonkeys.com/qed/unicode.html" rel="nofollow">this quick guide</a> or <a href="http://www.cl.cam.ac.uk/~mgk25/unicode.html" rel="nofollow">this detailed FAQ on UTF-8 in Linux and Unix</a>.</li>
<li>The earlier you get your solution in, the more time I (and other people voting) will have to look at it. You can edit your solution if you improve it; I'll base my bounty on the most recent version when I take my last look through the solutions.</li>
<li>If you want an easy image format to parse and write (and don't want to just use an existing format), I'd suggest using the <a href="http://en.wikipedia.org/wiki/Netpbm%5Fformat" rel="nofollow">PPM format</a>. It's a text based format that's very easy to work with, and you can use <a href="http://www.imagemagick.org/" rel="nofollow">ImageMagick</a> to convert to and from it.</li>
</ul>
<h3>Edit log</h3>
<p>May 30: Bounty deadline up, picked winner
May 28: More precise details on deadline
May 28: Cleanup of links, mention PPM
May 27: Reorganized and cleaned up rules and guidelines; added tips and links
May 26: Mentioned deadline issues and removed the soft cap of 100 lines
May 22: Added reference images, clarifications about Unicode, and a rough scoring rubric
May 21: Updated to allow 140 arbitrary Unicode characters. While the Twitter web form counts by UTF-16 code units, the API allows 140 arbitrary Unicode characters, so we'll use that definition to allow more flexibility.
May 21: Added deadline information
May 21: Posted original challenge</p>
http://stackoverflow.com/questions/1480186/what-is-in-your-javascript-toolchain16What is in your JavaScript toolchain?Brian Campbell2009-09-26T01:28:35Z2009-12-09T10:24:28Z
<p>I am looking to start writing a fairly sophisticated application in JavaScript to run on the web. I've written little bits of throwaway code in JavaScript before, using the DOM directly and a little bit of jQuery. But this is the first time I'm looking to write a full-fledged application to run in the browser.</p>
<p>So, I'm wondering what toolchains people prefer for doing serious development in JavaScript. In particular, I'm interested in the following, along with some information about why you chose the components you did and how they all fit together into your workflow:</p>
<ul>
<li>What editor and editor plugins/modes/scripts do you use? I'm generally an Emacs user, and am using <code>js2.el</code> at the moment, but I'm interested in hearing about other setups.</li>
<li>Do you use any sort of IDE (Aptana, Dashcode, or the like)?</li>
<li>What JavaScript libraries or frameworks do you use?</li>
<li>Do you use any of the languages that compile to JavaScript (GWT, haxe, Objective-J)?</li>
<li>What unit test frameworks do you use? How do you invoke them? Can they be invoked from your editor/IDE, from the command line, from the browser in a web page, from your JavaScript debugger? </li>
<li>What automated user interface testing tools do you use (such as Selenium, Watir, Sahi)? Again, how can these be invoked? (Being able to invoke unit tests and interface tests from the command line would be very useful, for running buildbots)</li>
<li>What other code quality tools do you use (JSlint, code coverage tools, or anything of the sort)?</li>
<li>What do you use for your debugging environment (Firebug, WebKit inspector, etc)? Does it have any integration with your editor or IDE?</li>
<li>What post-processing do you run on your code before deploying it (obfuscators, minifiers, any kind of optimizers)?</li>
<li>Do you have any sort of tools for managing module dependencies or dynamically loading code as it's needed? The application I'm writing will be working with a large amount of code, and I would like to keep load times down, so tools for tracking what modules are needed or loading code on demand would be helpful.</li>
<li>Are there any other essential tools in your toolchain (which are specific to JavaScript development for browser based applications; I already have a perfectly good version control system, bug tracker, etc)?</li>
</ul>
<p>I'm less interested here in lists of "here are a bunch of things you could use" (I know of a lot of the tools that are available), and more in the stack that you actually use in practice and how it all fits together. I'm hoping to develop this primarily as a client side application, with the server just being used for authentication and to store and retrieve data, so I'm not interested in what server side framework you use, unless it is integral to the client side code in some way.</p>
<p><strong>edit</strong>: I'm particularly interested in the unit and user interface testing frameworks, and how you automate them. I prefer to be able to run one single "make test" or "rake test" task from the command line to run all tests for the projects, and have it return a status depending on the success or failure of the tests. This would allow much easier integration with buildbots. Also, I'm interested if anyone writes unit tests that can be run outside of a browser (in Rhino, spidermonkey, v8, or the like) for code that don't depend on the browser, for faster turnaround on a subset of your tests.</p>
http://stackoverflow.com/questions/1794196/working-copy-is-on-master-branch-how-to-update-from-remote-server/1794211#17942111Answer by Brian Campbell for working copy is on master branch, how to update from remote server?Brian Campbell2009-11-25T02:04:05Z2009-11-25T13:38:21Z<pre><a href="http://www.kernel.org/pub/software/scm/git/docs/git-pull.html" rel="nofollow">git pull</a> origin master</pre>
<p>Or if instead of pulling into your local branch, you just wanted to update the branches you have locally that track <code>origin</code>:</p>
<pre><a href="http://kernel.org/pub/software/scm/git/docs/git-fetch.html" rel="nofollow">git fetch</a></pre>
<p>or </p>
<pre><a href="http://www.kernel.org/pub/software/scm/git/docs/git-remote.html" rel="nofollow">git remote</a> update</pre>
<p>if you're tracking multiple remote servers and want to update them all at once.</p>
http://stackoverflow.com/questions/1794354/semantic-markup-for-complex-or-nested-html-tables/1794459#17944591Answer by Brian Campbell for Semantic markup for complex or nested HTML tables?Brian Campbell2009-11-25T03:36:44Z2009-11-25T03:36:44Z<p>One thing you need to ask yourself when trying to make your markup more semantic is to what end you are doing it. Semantic markup has value because it's easier to style, and apply different stylesheets to without having to customize them for the markup you are using. It has value because it aids accessibility, making it easier for screenreaders or alternative rendering engines to analyze it appropriately. And sometimes it has value because search engine or other automated tools can extract information from it.</p>
<p>Sometimes, however, you come across a case that HTML just can't handle. This seems to be one of them. HTML does not have any way of nesting hierarchical data in tables with columns that don't match the other columns of the table. So, you need to do the best with what you've got. At this point, worrying about making it more semantic doesn't buy you all that much; you're doing something fairly special-case, that other stylesheets, screen readers, and tools probably won't know what to do with, so pretty much any solution you come up with that isn't completely contrary to the purpose of the elements in question is OK.</p>
<p>I think the solution you mention is about the best you can do. Mark those rows containing nested tables with a class that indicates that they aren't like the other rows, and call it good. If you wanted, you could group them together with the rows they are attached to using multiple <code><tbody></code> elements:</p>
<pre><code><table>
<tbody>
<tr><td>Shadrach <td>M <td>Banana <td>12
<tr class=nested><td colspan=4>
<table>...</table>
<tbody>
<tr><td>Meshgah <td>M <td>Apple <td>34
<tbody>
<tr><td>Abednego <td>M <td>Persimmon <td>0
</table>
</code></pre>
http://stackoverflow.com/questions/1778035/regex-use-in-reading-file-txt-and-returning-information-to-screen/1778140#17781401Answer by Brian Campbell for Regex use in reading file .txt and returning information to screenBrian Campbell2009-11-22T07:49:54Z2009-11-22T07:49:54Z<p>First of all, in that example data you listed, it appears that there aren't any lines which contain "CLOWN" and "112". I'm going to assume for the rest of this answer that the course number you are interested in is "110".</p>
<p>This line appears to be your problem:</p>
<pre><code>line.scan~(/department/&&/classnumber/)
</code></pre>
<p>A useful debugging tool is to try and reduce your problem to a small test case. In Ruby and other scripting languages, it can be helpful to play with that test case in an interactive shell like <a href="http://en.wikipedia.org/wiki/Interactive%5FRuby%5FShell" rel="nofollow"><code>irb</code></a>. Let's try that in <code>irb</code>, with some mockup data so our variables are defined:</p>
<pre><code>>> department = "CLOWN"
=> "CLOWN"
>> classnumber = "110"
=> "110"
>> line = "342 1936 CLOWN 110 ON HD CLOWN MAKE-CLASS 5.0 5.0 KRUSTY 798 MTWTh 7:30A 8:30A 24 13 11 4.3"
=> "342 1936 CLOWN 110 ON HD CLOWN MAKE-CLASS 5.0 5.0 KRUSTY 798 MTWTh 7:30A 8:30A 24 13 11 4.3"
>> line.scan~(/department/&&/classnumber/)
TypeError: wrong argument type nil (expected Regexp)
from (irb):4:in `scan'
from (irb):4
from :0
</code></pre>
<p>OK, so there are a few problems. The first is that <code>scan~</code> is not valid syntax; the method is just <code>scan</code>:</p>
<pre><code>>> line.scan(/department/&&/classnumber/)
=> []
</code></pre>
<p>Hmm. Not an error this time, but still no result. Lets see what the components of that are doing. What we're doing in this line is computing <code>/department/&&/classnumber/</code>, and then passing the result of that to the <code>scan</code> method on the <code>line</code> string.</p>
<pre><code>>> /department/&&/classnumber/
=> /classnumber/
</code></pre>
<p>Interesting. That just gives us the second regular expression that we passed in. Why is that? Well, the <code>&&</code> operator takes two expressions. It computes the first expression. If that is false, it returns false. If it is true, it computes the second expression. If that is false, it returns false. If that is true, it returns the second expression. Now, every value in ruby except for <code>false</code> and <code>nil</code> is treated as if it were true. So, since these two regular expression are not <code>false</code> or <code>nil</code>, they are both treated as true, and the result of this expression is the second component, <code>/classnumber/</code>.</p>
<p>But even given that the first regular expression is being ignored, and only the second is being used, why doesn't this work?</p>
<pre><code>>> line.scan(/classnumber/)
=> []
</code></pre>
<p>When you write the regular expression <code>/classnumber/</code>, you are looking for the literal characters <code>classnumber</code> in your string. For instance:</p>
<pre><code>>> "string containing classnumber".scan(/classnumber/)
=> ["classnumber"]
</code></pre>
<p>What you want to be looking for, however, is the value of the variable <code>classnumber</code>. There are a couple of ways to go about this. You could just pass that string in to <code>scan</code>:</p>
<pre><code>>> line.scan(classnumber)
=> ["110"]
</code></pre>
<p>Or, you can build a regular expression by interpolating your <code>classnumber</code> variable into it:</p>
<pre><code>>> line.scan(/#{classnumber}/)
=> ["110"]
</code></pre>
<p>Now, you have something working. But you still want to match against the department too. How can you combine the two? You could just interpolate them into the same regexp:</p>
<pre><code>>> line.scan(/#{department} #{classnumber}/)
=> ["CLOWN 110"]
</code></pre>
<p>Note that I add a space in the middle to match the space between department and course number in the input. Depending on your data format, you may want this to be <code>/#{department} +#{classnumber}/</code> to indicate “one or more spaces,” or <code>/#{department}.*#{classnumber}/</code> to indicate “any number of any character;” you'll have to make that call yourself.</p>
<p>Oh, and if you want to be getting the whole line, you're going to need to add something to match the text before and after the department and class number:</p>
<pre><code>>> line.scan(/.*#{department} #{classnumber}.*/)
=> ["342 1936 CLOWN 110 ON HD CLOWN MAKE-CLASS 5.0 5.0 KRUSTY 798 MTWTh 7:30A 8:30A 24 13 11 4.3"]
</code></pre>
<p>Anyhow, I think that's about it. You can now match against the department and class number that have been input; and if you followed the steps I used to deconstruct your problem, you might be able to use a similar technique to isolate and solve problems in the future.</p>
http://stackoverflow.com/questions/1777990/c-programming-address-of-a-label/1778008#17780082Answer by Brian Campbell for C Programming: address of a labelBrian Campbell2009-11-22T06:30:05Z2009-11-22T06:54:23Z<p>The <code>switch ... case</code> statement is essentially a <a href="http://en.wikipedia.org/wiki/Goto#Computed%5FGOTO" rel="nofollow">computed <code>goto</code></a>. A good example of how it works is the bizarre hack known as <a href="http://en.wikipedia.org/wiki/Duff%27s%5Fdevice" rel="nofollow">Duff's Device</a>:</p>
<pre><code>send(to, from, count)
register short *to, *from;
register count;
{
register n=(count+7)/8;
switch(count%8){
case 0: do{ *to = *from++;
case 7: *to = *from++;
case 6: *to = *from++;
case 5: *to = *from++;
case 4: *to = *from++;
case 3: *to = *from++;
case 2: *to = *from++;
case 1: *to = *from++;
}while(--n>0);
}
}
</code></pre>
<p>You can't do a <code>goto</code> from an arbitrary location using this technique, but you can wrap your entire function in a <code>switch</code> statement based on a variable, then set that variable indicating where you want to go, and <code>goto</code> that switch statement.</p>
<pre><code>int main () {
int label = 0;
dispatch: switch (label) {
case 0:
label = some_computation();
goto dispatch;
case 1:
label = another_computation();
goto dispatch;
case 2:
return 0;
}
}
</code></pre>
<p>Of course, if you do this a lot, you'd want to write some macros to wrap it.</p>
<p>This technique, along with some convenience macros, can even be used to implement <a href="http://www.chiark.greenend.org.uk/~sgtatham/coroutines.html" rel="nofollow">coroutines in C</a>.</p>
http://stackoverflow.com/questions/1749905/code-golf-fractran/1777831#17778310Answer by Brian Campbell for Code Golf: FractranBrian Campbell2009-11-22T04:41:15Z2009-11-22T04:48:13Z<h2>Scheme 73 characters</h2>
<p>My first attempt, at doing this with completely standard R<sup>5</sup>RS Scheme, came in at 104 characters:</p>
<pre>
(define(f p n)(let l((q p)(n n))(if(null? q)n(let((a(* n(car q))))(if(integer?
a)(l p a)(l(cdr q)n))))))
</pre>
<p>Running against a few items in the test vector:</p>
<pre>
> (f '(3/2) 1296)
6561
> (f '(455/33 11/13 1/11 3/7 11/2 1/3) 60466176)
7888609052210118054117285652827862296732064351090230047702789306640625
</pre>
<p>If you assume that <code>λ</code> is bound to <code>lambda</code> and <code>let/cc</code> is defined (as they are in PLT Scheme; see below for definitions for running this in Schemes that don't define those), then I can adapt <a href="http://stackoverflow.com/questions/1749905/code-golf-fractran/1751375#1751375">Jordan's second Ruby solution</a> to Scheme, which comes out to 73 characters (note that the argument order is the reverse of my first solution, but the same as Jordan's; in this version, that saves one character).:</p>
<pre>
(define(f n p)(let/cc r(map(λ(i)(if(integer?(* n i))(r(f(* n i)p))))p)n))
</pre>
<p>If I don't have <code>λ</code> and <code>let/cc</code> predefined, then this one comes in at 111 characters (88 if the fairly common <code>call/cc</code> abbreviation is defined):</p>
<pre>
(define(f n p)(call-with-current-continuation(lambda(r)(map(lambda(i)(if(integer?(*
n i))(r(f(* n i)p))))p)n)))
</pre>
<p>Definitions of <code>λ</code> and <code>let/cc</code>:</p>
<pre>
(define-syntax λ
(syntax-rules ()
((_ . body) (lambda . body)))
(define-syntax let/cc
(syntax-rules ()
((_ var . body) (call-with-current-continuation (lambda (var) . body)))))
</pre>
http://stackoverflow.com/questions/1772579/representing-probability-in-c/1772850#17728501Answer by Brian Campbell for Representing probability in C++Brian Campbell2009-11-20T19:52:52Z2009-11-20T19:52:52Z<p>The issue here is that floating point numbers are stored in base 2. You can not exactly represent a decimal in base 10 with a floating point number in base 2.</p>
<p>Lets step back a second. What does .1 mean? Or .7? They mean 1x10<sup>-1</sup> and 7x10<sup>-1</sup>. If you're using <a href="http://en.wikipedia.org/wiki/Binary%5Fnumeral%5Fsystem" rel="nofollow">binary</a> for your number, instead of base 10 as we normally do, .1 means 1x2<sup>-1</sup>, or 1/2. .11 means 1x2<sup>-1</sup> + 1x2<sup>-2</sup>, or 1/2+1/4, or 3/4.</p>
<p>Note how in this system, the denominator is always a power of 2. You cannot represent a number without a denominator that is a power of 2 in a finite number of digits. For instance, .1 (in decimal) means 1/10, but in binary that is an infinite repeating fraction, 0.000110011... (with the 0011 pattern repeating forever). This is similar to how in base 10, 1/3 is an infinite fraction, 0.3333....; base 10 can only represent numbers exactly with a denominator that is a multiple of powers of 2 and 5. (As an aside, base 12 and base 60 are actually really convenient bases, since 12 is divisible by 2, 3, and 4, and 60 is divisible by 2, 3, 4, and 5; but for some reason we use decimal anyhow, and we use binary in computers).</p>
<p>Since floating point numbers (or fixed point numbers) always have a finite number of digits, they cannot represent these infinite repeating fractions exactly. So, they either truncate or round the values to be as close as possible to the real value, but are not equal to the real value exactly. Once you start adding up these rounded values, you start getting more error. In decimal, if your representation of 1/3 is .333, then three copies of that will add up to .999, not 1.</p>
<p>There are four possible solutions. If all you care about is exactly representing decimal fractions like .1 and .7 (as in, you don't care that 1/3 will have the same problem you mention), then you can represent your numbers as decimal, for instance using <a href="http://en.wikipedia.org/wiki/Binary%5Fcoded%5Fdecimal" rel="nofollow">binary coded decimal</a>, and manipulate those. This is a common solution in finance, where many operations are defined in terms of decimal. This has the downside that you will need to implement all of your own arithmetic operations yourself, without the benefits of the computer's FPU, or find a <a href="http://www.alphaworks.ibm.com/tech/decnumber" rel="nofollow">decimal arithmetic library</a>. This also, as mentioned, does not help with fractions that can't be represented exactly in decimal.</p>
<p>Another solution is to use fractions to represent your numbers. If you use fractions, with bignums (arbitrarily large numbers) for your numerators and denominators, you can represent any rational number that will fit in the memory of your computer. Again, the downside is that arithmetic will be slower, and you'll need to implement arithmetic yourself or <a href="http://gmplib.org/" rel="nofollow">use an existing library</a>. This will solve your problem for all rational numbers, but if you wind up with a probability that is computed based on π or √2, you will still have the same issues with not being able to represent them exactly, and need to also use one of the later solutions.</p>
<p>A third solution, if all you care about is getting your numbers to add up to 1 exactly, is for events where you have <em>n</em> possibilities, to only store the values of <em>n</em>-1 of those probabilities, and compute the probability of the last as 1 minus the sum of the rest of the probabilities.</p>
<p>And a fourth solution is to do what you always need to remember when working with floating point numbers (or any inexact numbers, such as fractions being used to represent irrational numbers), and never compare two numbers for equality. Again in base 10, if you add up 3 copies of 1/3, you will wind up with .999. When you want to compare that number to 1, you have to instead compare to see if it is close enough to 1; check that the absolute value of the difference, 1-.999, is less than a threshold, such as .01.</p>
http://stackoverflow.com/questions/1770748/a-puzzle-a-program-printing-its-own-source/1770771#17707711Answer by Brian Campbell for A puzzle - a program printing its own sourceBrian Campbell2009-11-20T14:27:14Z2009-11-20T14:27:14Z<p>This is known as a <a href="http://en.wikipedia.org/wiki/Quine%5F%28computing%29" rel="nofollow">“quine”</a>. As it's a pretty standard puzzle, there are already <a href="http://www.nyx.net/~gthompso/quine.htm" rel="nofollow">lots of solutions</a> out there; a better challenge might be a more specific puzzle that adds an additional constraint.</p>
http://stackoverflow.com/questions/1753931/help-needed-in-writing-a-gui-app-in-c/1753986#17539861Answer by Brian Campbell for Help needed in writing a GUI app in C Brian Campbell2009-11-18T06:11:21Z2009-11-19T16:51:07Z<p>Most GUI toolkits are written in C++, so restricting yourself to C will limit your options somewhat. One option that is cross platform and written in C is <a href="http://www.gtk.org/" rel="nofollow">GTK</a>; it's originally for X, but <a href="http://www.gtk.org/download-windows.html" rel="nofollow">runs on Windows</a> as well.</p>
<p><strong>edit</strong>: Of course, you could always just program directly against the <a href="http://msdn.microsoft.com/en-us/library/aa383750%28VS.85%29.aspx" rel="nofollow">Windows API</a> (formerly know as Win32) itself. For simple GUIs, it's not too bad.</p>
http://stackoverflow.com/questions/687014/removing-created-temp-files-in-unexpected-bash-exit/687033#6870335Answer by Brian Campbell for Removing created temp files in unexpected bash exitBrian Campbell2009-03-26T18:34:49Z2009-11-18T14:36:11Z<p>You want to use the <a href="http://www.gnu.org/software/bash/manual/bashref.html#index-trap-125" rel="nofollow">trap</a> command to handle exiting the script or signals like CTRL-C. See the <a href="http://tldp.org/LDP/abs/html/debugging.html#EX76" rel="nofollow">Advanced Bash Scripting Guide</a> for details.</p>
<p>For your tempfiles, using <code>basename $0</code> is a good idea, as well as providing a template that provides room for enough temp files:</p>
<pre><code>tempfile() {
tempprefix = $(basename "$0")
mktemp /tmp/${tempprefix}.XXXXXX
}
TMP1 = $(tempfile)
TMP2 = $(tempfile)
trap 'rm -f $TMP1 $TMP2' EXIT
</code></pre>
http://stackoverflow.com/questions/1753785/combining-function-bodies-at-runtime/1753835#17538350Answer by Brian Campbell for Combining function bodies at runtimeBrian Campbell2009-11-18T05:28:41Z2009-11-18T05:28:41Z<p>It's a bit heavyweight, so it may not be what you're looking for, but you could always try using <a href="http://llvm.org/" rel="nofollow">LLVM</a> to <a href="http://llvm.org/docs/tutorial/JITTutorial1.html" rel="nofollow">JIT</a> your code.</p>
http://stackoverflow.com/questions/1753685/how-should-i-construct-a-finance-dsl/1753818#17538182Answer by Brian Campbell for How should I construct a finance DSL?Brian Campbell2009-11-18T05:25:16Z2009-11-18T05:25:16Z<p>This sounds somewhat similar to the work by Simon Peyton Jones et al. on <a href="http://research.microsoft.com/en-us/um/people/simonpj/Papers/financial-contracts/contracts-icfp.htm" rel="nofollow">representing financial contracts using combinator libraries</a>, including an <a href="http://contracts.scheming.org/" rel="nofollow">implementation in Haskell</a>, including the ability to run evaluation functions over them to compute the value of the contract given some model. I don't know enough about finance to tell you if this is exactly what you're looking for, but it sounds like it's in the right ballpark.</p>
<p>As to your specific question, I generally prefer embedded domain specific languages (that is, DSL-like constructs embedded in a host language, such as Ruby with its object oriented metaprogramming, Scheme with its macros, or Haskell combinator libraries), since it give you the full power of the host language for free; usually when writing a domain specific language with its own syntax, execution model, runtime, and so on, you run into things that would be easy to do if you had an existing language available, but are a pain to deal with since you haven't implemented something in your DSL.</p>
http://stackoverflow.com/questions/1751671/boostformat-attempting-to-use-html-as-formatter-string-need-some-help/1751702#17517023Answer by Brian Campbell for boost::format - attempting to use HTML as formatter string - need some helpBrian Campbell2009-11-17T20:55:43Z2009-11-17T22:14:05Z<p><code>boost::format</code> uses <code>%</code> to delimit <a href="http://www.boost.org/doc/libs/1%5F40%5F0/libs/format/doc/format.html#syntax" rel="nofollow">format specifications</a>; so the <code>%</code> characters in your CSS are confusing it; it is trying to evaluate them as format specifications. You'll need to replace those with <code>%%</code> to get just a literal <code>%</code> character in the output.</p>
<p>If that doesn't help, then I would recommend trying to edit your template down into smaller pieces, until you find a piece as small as possible that demonstrates the problem. Once you do that, you may discover the problem yourself, but if not, edit your post to include that smaller snippet that still demonstrates the problem (preferably 1 or 2 lines of less than 80 characters each), as well as the exact error that you are getting from Boost. Likewise, it would help if you posted a snippet of the code you are using to read in the file, and invoke <code>boost::format</code>; a complete program with just a few lines of code for reading the template in, and printing the output of <code>boost::format</code>, would allow us to see if there's anything in your code that might be causing problems (and again, that may help you isolate the problem yourself).</p>
<p>The code you posted (edited a bit so it actually works; you left out declarations of <code>buffer</code> and <code>err</code>), works just fine with the template you posted, if all of the <code>%</code> signs in the CSS are replaced by <code>%%</code>, as I originally suggested. Here's the edited code (including output to check that it works):</p>
<pre><code>#include <string>
#include <fstream>
#include <boost/algorithm/string.hpp>
#include <boost/format.hpp>
#include <iostream>
int main()
{
std::ifstream ifs("template.html"); // the html is in that file
std::string buffer, err;
if(!ifs.good())
return 1;
while(!ifs.eof())
{
char buf[256];
ifs.getline(buf, 256);
buffer += buf;
}
buffer = boost::trim_right_copy(buffer);
const std::string str1 = "aaa";
const std::string str2 = "bbb";
const std::string str3 = "ccc";
std::string Out = "";
try{
Out = (boost::format(buffer)
% str1
% str2
% str3
).str();
} catch(std::exception &e)
{
err = e.what();
std::cout << err << std::endl;
return 1;
}
std::cout << Out;
return 0;
}
</code></pre>
<p>And here's the edited template:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>KP&D</title>
<style type="text/css">
html, body
{
height: 100%%;
margin: 0;
padding: 0;
}
img#bg
{
position:fixed;
top:0;
left:0;
width:100%%;
height:100%%;
}
#content
{
position:relative;
z-index:1;
}
</style>
</head>
<body>
<img src="Images/PageBackground.png" alt="background image" id="bg" />
<div id="content">
<br/>&nbsp;
<img src="Images/MyLogoReflected.png" alt="logo image"/>
<br />&nbsp;
<img src="Images/PDC_StatusPage.png" alt="remote status page image" />
<br />&nbsp;
<img src="Images/PDC_RemoteConfiguration.png" alt="remote config image" />
<br />&nbsp;
%s
<br />&nbsp;
<img src="Images/PDC_RemoteSubsystemStatus.png" alt="remote status image" />
<br />&nbsp;
%s
<br />&nbsp;
<img src="Images/PDC_RemoteConnectivityStatus.png" alt="remote status image" />
<br />&nbsp;
%s
<br />&nbsp;
</div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1751974/why-are-quotation-marks-showing-up-on-certain-text-only-in-safari/1751990#17519904Answer by Brian Campbell for Why are quotation marks showing up on certain text only in Safari?Brian Campbell2009-11-17T21:35:42Z2009-11-17T21:35:42Z<p>Because you are using the <a href="http://www.w3.org/TR/html401/struct/text.html#h-9.2.2" rel="nofollow"><code><q></code></a> element, which wraps its contents in quotation marks. The <code><q></code> element is not supported in Internet Explorer (until <a href="http://msdn.microsoft.com/en-us/library/cc304133%28VS.85%29.aspx#Quoting" rel="nofollow">IE 8</a> in IE 8 standards mode), so they don't show up there.</p>
http://stackoverflow.com/questions/1746382/less-restrictive-gpl-like-license/1746843#17468431Answer by Brian Campbell for less-restrictive GPL-like licenseBrian Campbell2009-11-17T05:45:33Z2009-11-17T05:45:33Z<p>You should just dual (or triple, or n-tuple) license it under whichever licenses you feel comfortable releasing it under. A dual license is one where you say that the user gets to choose which license to use the program under.</p>
<p>The GPL is very frequently used under a dual license; most programs are licensed under "GPLv2 or later", which at this point means GPLv2 or GPLv3. There's also a lot of software which is dual licensed under the GPL and the <a href="http://www.mozilla.org/MPL/" rel="nofollow">MPL</a> or similar license (which is actually usually a many way license, as there's usually an "or later" for all of the licenses involved).</p>
<p>Of course, the MPL is a weak copyleft license (like the LGPL), not strong copyleft like the GPL. So, if you dual license under the MPL, your code may be used in other proprietary programs, though modifications to your code itself must be released.</p>
<p>The problem with what you suggest in your question, "If you incorporate into FOSS software that uses gpl-like* license, you may re-license to that license. Otherwise, you may not change the license, Where gpl-like is any FOSS license that requires the whole project to be under the same license" is that most of the license conflicts of interest are not with such GPL like licenses (are there any other strong copyleft free software licenses other than the GPL), but instead with MPL like licenses; that is, the GPL requires the whole program to be distributed under the terms of the GPL, while the MPL requires that that portion be distributed under the MPL without additional restrictions, causing a conflict. And if you allow it to be distributed under the MPL, then people can use it in a proprietary program, as long as the MPL licensed portion remains free.</p>
<p>So, you have to ask yourself what you are interested in. Are you interested in your program or library only ever being used in free software? Then use the GPLv2 or later for maximum compatibility. Are you interested in your library always remaining free, but want it to be able to be linked into GPL-incompatible programs (including, potentially, proprietary programs)? Then use the LGPL, MPL, or similar license, or a dual or triple license (such as GPLv2 or later, MPL v1.1 or later, or LGPL v2.1 or later like most Mozilla source code is licensed). Do you want anyone to be able to do whatever the heck they want? Then use the <a href="http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3" rel="nofollow">X11/MIT</a> license (shorter and simpler than BSD), or the <a href="http://sam.zoy.org/wtfpl/COPYING" rel="nofollow">WTFPLv2</a> (the shortest, most clear license I've ever seen).</p>
<p>And if you're feeling really generous, you can release the code into the public domain like <a href="http://www.sqlite.org/copyright.html" rel="nofollow">SQLite</a>, which comes with a blessing rather than a license in each file:</p>
<blockquote>
<p>May you do good and not evil<br>
May you find forgiveness for yourself and forgive others<br>
May you share freely, never taking more than you give.</p>
</blockquote>
<p>I always find that much more pleasant than the long, tedious, and scary legal notices involved in most licenses.</p>
http://stackoverflow.com/questions/1741368/a-language-that-doesnt-use-c/1746679#17466792Answer by Brian Campbell for A language that doesn't use 'C' ?Brian Campbell2009-11-17T04:54:54Z2009-11-17T04:54:54Z<p>C is the language that most modern operating systems are written in, and thus pretty much every other language that wants to run on modern operating systems and modern hardware has to have the ability to interface to C if it wants to interact with the rest of the world at all. Also, because of this, C compilers are ubiquitous, so you can pretty much always rely on a C compiler being available for any platform you're interested in. For these two reason, many languages are either implemented in C (at least in part), or are written to compile to C (so the version compiled to C can be used to bootstrap).</p>
<p>That said, there are still some languages that have very little contact with C. <a href="http://trac.clozure.com/ccl" rel="nofollow">Clozure Common Lisp</a> (formerly OpenMCL, before that Macintosh Common Lisp, before that Coral Common Lisp) is written entirely in Common Lisp. You need to download binaries of it for some platform in order to be able to compile it. It's very common for Lisps to be written in Lisp (sometimes another dialect, sometimes the same one), as Lisp is much older than C. There were even <a href="http://en.wikipedia.org/wiki/Lisp%5FMachine" rel="nofollow">Lisp Machines</a> in the 1970's and 80's that were designed to run Lisp, and the entire operating system and development environment was written in it.</p>
<p>There are many languages that have a compiler and some libraries written in that language, while some libraries and bits of the runtime are written in C. For instance, <a href="http://www.cons.org/cmucl/" rel="nofollow">CMUCL</a> (and its derivative <a href="http://www.sbcl.org/" rel="nofollow">SBCL</a>) are primarily written in Common Lisp, but they have a small C runtime. The same is true of <a href="http://www.haskell.org/ghc/" rel="nofollow">GHC</a>, the Glasgow Haskell Compiler; it's written in Haskell, so you need an existing Haskell implementation to build it (usually <a href="http://www.haskell.org/hugs/" rel="nofollow">Hugs</a>, as that's written in C and thus makes bootstrapping easier), but it has some C code in its runtime.</p>
<p><a href="http://www.s48.org/" rel="nofollow">Scheme 48</a> is a Scheme that is is written in <a href="http://en.wikipedia.org/wiki/PreScheme" rel="nofollow">PreScheme</a>, a limited dialect of Scheme that can be compiled to C, which is itself written in Scheme. The fact that it compiles to C makes bootstrapping easier; the Scheme 48 distribution comes with the code compiled to C already, so you just need to compile that with your system C compiler to get yourself up and running.</p>
<p>There are plenty of other languages written in languages other than C as well. There's <a href="http://en.wikipedia.org/wiki/Free%5FPascal" rel="nofollow">Free Pascal</a>, a version of Pascal written in Pascal. There are plenty of languages written in Java, though the JVM itself is mostly written in C. <a href="http://www.erlang.org/" rel="nofollow">Erlang</a> was originally written in <a href="http://en.wikipedia.org/wiki/Prolog" rel="nofollow">Prolog</a> (which strongly influenced its syntax), but is not written in a combination of C and Erlang.</p>
<p>All programming languages have to be written in something, if you want them to run on an actual computer. In the beginning, the only choice was writing machine code directly. Soon after, people wrote assemblers (originally in machine code, and later themselves in assembler) to make writing machine code easier. That was then followed by high level languages; FORTRAN, Lisp, COBOL, ALGOL, and later still Simula, Smalltalk, C, Pascal, ML, Prolog. Each of these had to be written in something; the earliest were written in assembler, then later some were written in themselves, and others written in another high level language. By the 80's, C was pretty much the dominant systems programming language, and thus it became the default choice for writing a new language in; and that continues to today. But look back to languages from before then, and you'll find plenty implemented in other languages, or even themselves.</p>
http://stackoverflow.com/questions/1744606/javascript-spam-filter/1744922#17449221Answer by Brian Campbell for JavaScript spam filterBrian Campbell2009-11-16T21:17:51Z2009-11-16T21:39:09Z<p>The basic issue here is that you have a <code><script></code> tag that contains a <code><</code> sign. The XHTML parser sees that as the beginning of a new tag, which it believes is called <code>coded.length</code>.</p>
<p>There are a few possible solutions. One is to put in the opening comment delimiter. You have the closing delimiter <code>--></code>, but not the opening delimiter. You just have to add a line containing <code><!--</code> right after the <code><script></code> to get this to work. When I try that on your page, though I get a validation error about the <code><noscript></code> element. <code><noscript></code> appears to have some serious problems in XHTML 1.1, I'm not sure how to get it to both work and validate.</p>
<p>Of course, you appear to be serving your XHTML with mime type <code>text/html</code>, which is technically incorrect, and which means that browsers actually parse it as HTML, not as XHTML. See <a href="http://hixie.ch/advocacy/xhtml" rel="nofollow">Sending XHTML as text/html Considered Harmful</a> for some information on why this is a bad idea (though some of the reasons on that page are out of date, as they refer to old browsers that basically no one is using any more).</p>
<p>Another solution is to switch from an XHTML doctype to HTML5. This is a new, much easier to use doctype, that is more closely based on how browsers actually parse your HTML. All you have to do is change your <code><!DOCTYPE html SYSTEM ...></code> declaration to <code><!DOCTYPE html></code>. That's it! Well, you'll also have to remove your <code></meta></code> close tag, or turn it into a self closing element <code><meta ... /></code>. In this case, you don't need the comments around the contents of the <code><script></code> element; the parser will ignore all <code><</code> signs up to the next <code></script></code>.</p>
http://stackoverflow.com/questions/1744927/trying-to-act-on-img-element-using-css-but-not-getting-any-results/1744963#17449633Answer by Brian Campbell for Trying to act on <img> element using CSS - but not getting any resultsBrian Campbell2009-11-16T21:26:38Z2009-11-16T21:26:38Z<p>The snippet you posted (modified slightly to include the CSS as well, and to point to a different image) <a href="http://software.hixie.ch/utilities/js/live-dom-viewer/saved/308" rel="nofollow">works for me</a> in a few different browsers. So, it looks like the problem must be in something else in your code. You might want to try reducing the problem down to a small snippet that demonstrates the problem, and post that; in the process of reducing it down, you may even discover the problem yourself.</p>
http://stackoverflow.com/questions/1735073/what-can-you-do-in-30-lines-of-go-can-you-create-a-useful-complete-program-that10What can you do in 30 lines of Go? Can you create a useful, complete program that demonstrates its features?Brian Campbell2009-11-14T18:07:00Z2009-11-16T10:24:58Z
<p>So, the big buzz in the last few days is <a href="http://golang.org/" rel="nofollow">Go</a>, the new language from Google. Assuming you're all obsessive programming language geeks like me, you've all downloaded it, built it, and run your "Hello, 世界" program (isn't it nice using a language written by the inventors of UTF-8?). You've all read <a href="http://golang.org/doc/go%5Ftutorial.html" rel="nofollow">the tutorial</a>, <a href="http://golang.org/doc/effective%5Fgo.html" rel="nofollow">Effective Go</a>, and some of the other docs.</p>
<p>Now, what are you going to do with it?</p>
<p>I'd like to see some demos that show off the power of Go. What can you do in a brief program? Show off your best example code. While the true measure of a language can't really be taken until you've written and maintained a large codebase with a team of many programmers over the course of a project with changing requirements, seeing how much you can do in a limited amount of code does help to demonstrate the expressive power of a language. I'd like to see short, complete programs that truly exercise the unique new features of Go; not just snippets or "Hello, World".</p>
<p>So, post some cool code you've written with Go. Take advantage of its unique features, like its goroutines and channels for concurrency, or its interface based type system. Can you write a primitive chat server, or cool IRC bot? Implement a parallel Mandelbrot set that scales to many cores? Write an interpreter for some tiny language? And can you do it all in 30 lines? </p>
<p>I chose 30 arbitrarily as about as much as you can fit into a Stack Overflow code block without it overflowing and getting a scroll bar; it should be enough to do something interesting without golfing too much, but short enough to keep everyone's attention for a quick demo. For instance, with just a bit of reformatting, the example <a href="http://golang.org/doc/effective%5Fgo.html#web%5Fserver" rel="nofollow">web server</a> should be able to fit (not counting the data).</p>
<p>Show us your Go code!</p>
http://stackoverflow.com/questions/1735073/what-can-you-do-in-30-lines-of-go-can-you-create-a-useful-complete-program-that/1739625#17396253Answer by Brian Campbell for What can you do in 30 lines of Go? Can you create a useful, complete program that demonstrates its features?Brian Campbell2009-11-16T01:37:44Z2009-11-16T01:37:44Z<p>OK, I'll get the ball rolling. Here's my first Go program. It's a very primitive chat server, and fits in 30 lines of 80 characters if I compress it down a bit; formatted with <a href="http://golang.org/cmd/gofmt/" rel="nofollow"><code>gofmt</code></a>, it is 60 lines. It listens on a hard coded port (4242), does basically no error handling, and doesn't handle client disconnection other than stopping trying to read from a client if it gets an error.</p>
<pre><code>package main
import ("net";"container/vector";"bufio";"strings")
type client struct { conn net.Conn; send chan string; receive chan string }
func main() {
if listener, err := net.Listen("tcp", "0.0.0.0:4242"); err == nil {
master := make(chan string, 100);
clients := vector.New(0);
go runServer(master, clients);
for {
if conn, err := listener.Accept(); err == nil {
c := client{ conn, master, make(chan string, 100) };
clients.Push(c);
go runClient(c);
} else { break } } } }
func runServer(master chan string, clients *vector.Vector) {
for {
message := <-master;
clients.Do(func (c interface{}) { c.(client).receive <- message }); } }
func runClient(c client) {
input := make(chan string, 10);
go readLines(c, input);
for {
select {
case inMessage := <-input: c.send <- inMessage;
case outMessage := <-c.receive: c.conn.Write(strings.Bytes(outMessage));
} } }
func readLines(c client, input chan string) {
reader := bufio.NewReader(c.conn);
for { if line, err := reader.ReadString('\n'); err == nil
{ input <- line; } else { break } } }
</code></pre>
<p>Build and run with:</p>
<pre>$ 6g server.go
$ 6l -o server server.6
$ ./server
</pre>
<p>And then in a few other terminals, connect with</p>
<pre>$ nc localhost 4242
</pre>
http://stackoverflow.com/questions/1738845/python-and-iphone-development-on-mac-minimum-recommended-hardware/1738885#17388851Answer by Brian Campbell for Python and iPhone development on Mac - minimum/recommended hardware ?Brian Campbell2009-11-15T21:23:03Z2009-11-15T21:23:03Z<p>Any system that Apple sells is sufficient to do Python and iPhone development on the Mac. I generally consider 2 GB to be the minimum amount of RAM that I would want to use, and 4 GB if I'm going to be doing any significant amount of work in a VM (for instance, VMware Fusion or Parallels for running Windows within Mac OS X). But I think all configurations currently come with at least 2 GB of RAM, so you should be set there, too.</p>
<p>Of course faster machines are always better, so you should get a machine that's fast enough for you, but I have a couple year old Mac Book Pro and find that's fast enough for me.</p>
<p>The biggest help for development is multiple monitors. Having two monitors helps a lot (and three is good, too). I believe that all of Apple's current systems support two monitors.</p>
http://stackoverflow.com/questions/1738236/is-it-possible-to-receive-a-result-from-one-of-a-number-of-goroutines-in-go/1738307#173830714Answer by Brian Campbell for Is it possible to receive a result from one of a number of goroutines in Go?Brian Campbell2009-11-15T18:10:30Z2009-11-15T18:16:23Z<p>No, I don't believe your understanding of the limits of Go is correct.</p>
<p>For one thing, there's nothing I've seen in Go that limits channels to communicating between two routines. You can pass the same channel to both Asearch and Bsearch, and then whichever one finishes can send the result on that channel.</p>
<p>If instead you wanted to use two channels, and wait for one of them to get the result, you could just use the <a href="http://golang.org/doc/go%5Fspec.html#Select%5Fstatements" rel="nofollow"><code>select</code></a> statement. From the <a href="http://golang.org/doc/go%5Ftutorial.html" rel="nofollow">Go tutorial</a>, an example selecting on a channel used to send requests, and one used to signal the server to quit:</p>
<pre><code>21 func server(op binOp, service chan *request, quit chan bool) {
22 for {
23 select {
24 case req := <-service:
25 go run(op, req); // don't wait for it
26 case <-quit:
27 return;
28 }
29 }
30 }
</code></pre>
<p>Furthermore, while receives from a channel normally block, you can also do a <a href="http://golang.org/doc/go%5Fspec.html#Communication%5Foperators" rel="nofollow">non-blocking receive</a> from a channel.</p>
<blockquote>
<p>If a receive expression is used in an
assignment or initialization of the
form</p>
<pre><code>x, ok = <-ch
x, ok := <-ch
var x, ok = <-ch
</code></pre>
<p>the receive operation becomes
non-blocking. If the operation can
proceed, the boolean variable ok will
be set to true and the value stored in
x; otherwise ok is set to false and x
is set to the zero value for its type
(§<a href="http://golang.org/doc/go%5Fspec.html#The%5Fzero%5Fvalue" rel="nofollow">The zero value</a>).</p>
</blockquote>
<p>So, there are several ways to wait for the result from multiple goroutines without blocking. I think I'd go with multiple channels multiplexed using <code>select</code>, as that way you can easily tell which routine returned the result without having to package that information into the value you're sending or doing some other form of out-of-band communication.</p>
http://stackoverflow.com/questions/1734007/scheme-getting-the-pointer-from-pointed-struct/1734520#17345202Answer by Brian Campbell for Scheme, getting the pointer from pointed structBrian Campbell2009-11-14T15:14:20Z2009-11-14T18:08:05Z<p>No, it is not possible. And in fact, if you don't keep a reference to the parent object around anywhere, the parent object may be garbage collected. Any object which can be proven to never be reachable may be deleted at any time. If you don't store a reference to that object anywhere, then it is not reachable.</p>
<p>Now, there are a couple of options if you really did want to get back to the parents. You could save a reference to your parent in your child node (you would have to set it after creating your parent). A less optimal solution, but one that would work if you can't change the data structures in question for some reason, would be keep a list of all nodes that you create, and then search through that list for one which had a child that was <code>eq?</code> to the node in question. Or you could do the same, but save them in a hash table, with the key being the child and the value being the parent (or list of parents, if there can be more than one), for greater efficiency. I'm not sure if any of these solutions would work for you, as they may depend on the language level that you are using, if you are doing this in an introductory class and not using the full language.</p>
http://stackoverflow.com/questions/1695434/viewing-source-of-namespace-resolver-functions-linux-fedora/1695707#16957070Answer by Brian Campbell for viewing source of namespace resolver functions linux fedoraBrian Campbell2009-11-08T07:53:28Z2009-11-08T17:17:18Z<p>Here's are the steps I take find the source for <code>res_search</code>.</p>
<pre>$ <a href="http://linux.die.net/man/3/res_search" rel="nofollow">man res_search</a>
</pre>
<p>I see in that man page: <code>Link with -lresolv</code></p>
<pre>
$ ls /usr/lib/libresolv*
</pre>
<p>Oops, nothing there. <a href="http://www.pathname.com/fhs/pub/fhs-2.3.html" rel="nofollow">Where else do we look</a>? How about:</p>
<pre>$ ls /lib/libresolv*
/lib/libresolv-2.7.so /lib/libresolv.so.2
</pre>
<p>Great. Now <a href="http://docs.fedoraproject.org/drafts/rpm-guide-en/ch-using-rpm-db.html#id2939092" rel="nofollow">what package is that from</a>?</p>
<pre>$ rpm -qf /lib/libresolv-2.7.so
glibc-2.7-2
</pre>
<p>Ah. It's in <a href="http://www.gnu.org/software/libc/" rel="nofollow"><code>glibc</code></a>. Now, there are two choices. I can fetch the source RPMs, and look through those, in order to get the exact version that that my system was built from, but <a href="http://hacktux.com/fedora/source/rpm" rel="nofollow">that's a bit complicated to set up</a>.</p>
<p>If you don't need the exact source RPM that you were built from, you can instead look through the <a href="http://en.wikipedia.org/wiki/Upstream%5F%28software%5Fdevelopment)" rel="nofollow">upstream</a> source code. Just look around the <a href="http://www.gnu.org/software/libc/" rel="nofollow"><code>glibc</code> site</a> to find the <a href="http://www.gnu.org/software/libc/#Availability" rel="nofollow">source code</a>, and start looking through there.</p>
<pre>$ curl -O http://ftp.gnu.org/gnu/glibc/glibc-2.7.tar.gz
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 20.2M 100 20.2M 0 0 12.3M 0 0:00:01 0:00:01 --:--:-- 12.8M
$ tar xzf glibc-2.7.tar.gz
$ cd glibc-2.7
$ find . -name "*.c" | xargs grep res_search
./resolv/res_data.c:res_search(const char *name, /* domain name */
./resolv/res_data.c:# undef res_search
./resolv/res_data.c:weak_alias (__res_search, res_search);
</pre>
<p>And there you have it!</p>
<p>If you have <a href="http://git-scm.com/" rel="nofollow">Git</a> installed, instead of just downloading the tarball, you could clone the git repo, and look through that. That way, you can also look at any past or future version, to see how it's changed over time.</p>
<pre>$ git clone git://sourceware.org/git/glibc.git
$ cd glibc
$ git checkout glibc-2.7
$ git grep res_search
resolv/res_data.c:res_search(const char *name, /* domain name */
resolv/res_data.c:# undef res_search
resolv/res_data.c:weak_alias (__res_search, res_search);
</pre>
http://stackoverflow.com/questions/1930901/exclusive-or-in-scheme/1931062#1931062Comment by Brian Campbell on Exclusive OR in SchemeBrian Campbell2009-12-19T07:54:14Z2009-12-19T07:54:14ZScheme is a fairly minimalist language. From R<sup>5</sup>RS: "Programming languages should be designed not by piling feature on top of feature, but by removing the weaknesses and restrictions that make additional features appear necessary." So, there are a lot of things provided by other languages that Scheme merely provides building blocks for. Any given Scheme implementation may provide a more complete library, and the SRFIs <a href="http://srfi.schemers.org/" rel="nofollow">srfi.schemers.org</a> help standardize a few of the extensions to the core language.http://stackoverflow.com/questions/1926164/innosetup-getting-appname-in-code-section/1926356#1926356Comment by Brian Campbell on InnoSetup: Getting AppName in [Code] sectionBrian Campbell2009-12-18T05:19:30Z2009-12-18T05:19:30ZHmm. I'd prefer not to have to define every AppName as a macro, and then use that macro to define the real AppName in every program. But this is a start.http://stackoverflow.com/questions/1898791/blurring-a-web-page-backgroundComment by Brian Campbell on blurring a web page backgroundBrian Campbell2009-12-14T03:48:12Z2009-12-14T03:48:12ZI'm not sure what blur effect you are talking about. I don't see a blur effect on either of those pages. Can you post a screenshot of what you are referring to, or describe it in a bit more detail?http://stackoverflow.com/questions/1882577/couchdb-storing-mb-per-document/1882851#1882851Comment by Brian Campbell on couchDB: storing MB per documentBrian Campbell2009-12-10T19:20:24Z2009-12-10T19:20:24ZNote that you don't have to upload your attachments in Base64. You can create the document, and then separately add the attachment in a raw put request. See <a href="http://wiki.apache.org/couchdb/HTTP%5FDocument%5FAPI#Standalone_Attachments" rel="nofollow">wiki.apache.org/couchdb/…</a> for details.http://stackoverflow.com/questions/1480186/what-is-in-your-javascript-toolchain/1831061#1831061Comment by Brian Campbell on What is in your JavaScript toolchain?Brian Campbell2009-12-02T14:27:29Z2009-12-02T14:27:29ZHow is it doing on libraries other than their Closure library? The last I heard, it had some bugs when run on jQuery. It certainly is a pretty nice piece of technology; much better than your average minimizer.http://stackoverflow.com/questions/1813575/its-a-good-idea-use-ruby-for-socket-programmingComment by Brian Campbell on It's a good idea use ruby for socket programming?Brian Campbell2009-11-29T16:37:17Z2009-11-29T16:37:17ZHmm. Shouldn't you know because of Twitter that Ruby <i>can</i> handle a lot of requests? Twitter is one of the most popular websites on the internet (#14 according to Alexa). Any scalability problems it has are likely to be far beyond what you will ever experience, and are going to occur no matter what language and framework you use. The fact that Twitter has scaled up so far and fast actually says that they're doing a lot right, even if they do sometimes have a few issues.http://stackoverflow.com/questions/1735073/what-can-you-do-in-30-lines-of-go-can-you-create-a-useful-complete-program-that/1739625#1739625Comment by Brian Campbell on What can you do in 30 lines of Go? Can you create a useful, complete program that demonstrates its features?Brian Campbell2009-11-26T04:21:47Z2009-11-26T04:21:47ZSure. That's a type assertion (<a href="http://golang.org/doc/go_spec.html#Type_assertions" rel="nofollow">golang.org/doc/go_spec.html#Type_assertions/…</a>); it asserts that the type is what you specify (or conforms to the interface that you specify), and allows you to call methods that are defined on that type or interface. The syntax that you mention is a conversion (<a href="http://golang.org/doc/go_spec.html#Conversions" rel="nofollow">golang.org/doc/go_spec.html#Conversions</a>), which converts between compatible types (such as integer types). I believe that conversions only work for buit-in types (numbers and strings).http://stackoverflow.com/questions/1794196/working-copy-is-on-master-branch-how-to-update-from-remote-server/1794211#1794211Comment by Brian Campbell on working copy is on master branch, how to update from remote server?Brian Campbell2009-11-25T13:41:24Z2009-11-25T13:41:24ZOops. Yeah, that's wrong. Deleted from my answer.http://stackoverflow.com/questions/1792920/using-dell-gps-in-firefox-3-5-not-google-skyhookwirelessComment by Brian Campbell on Using Dell GPS in FireFox 3.5, not Google/SkyhookwirelessBrian Campbell2009-11-24T21:11:30Z2009-11-24T21:11:30ZThis question would probably be better asked on Super User (<a href="http://superuser.com/" rel="nofollow">superuser.com</a>), a companion site of Stack Overflow for power-user type questions like this. Stack Overflow is intended for programming questions, and it seems like you're asking about configuration. If you are actually asking about how to write such a driver, I'd recommend you reword your question to make that clear; if you're asking about configuration, it would be best to move your question to Super User.http://stackoverflow.com/questions/1785488/apache-virtual-host-configuration-on-debianComment by Brian Campbell on Apache virtual host configuration on debianBrian Campbell2009-11-23T20:08:32Z2009-11-23T20:08:32ZJust so you know, Server Fault <a href="http://serverfault.com" rel="nofollow">serverfault.com</a> is the equivalent of Stack Overflow, but for systems administration instead of programming; you're likely to find more people with knowledge about Apache configuration there than here.http://stackoverflow.com/questions/1785531/assessing-a-programmers-skillComment by Brian Campbell on Assessing a Programmers Skill Brian Campbell2009-11-23T20:05:47Z2009-11-23T20:05:47Z@Mo First of all, being related to <i>programmers</i> is not the same as being related to <i>programming</i>. Secondly, posting the same question with a different title after it has already been closed once, with the same link to some commercial service, comes off as very spammy. If you object to the first question being closed, edit it to fix the problems that people mention, and post something in the comments asking for it to be re-opened. Removing the link to the service would likely help a lot, as well as putting in more detail about what kind of job you're trying to evaluate people for.http://stackoverflow.com/questions/1773192/private-type-with-exported-fields/1773296#1773296Comment by Brian Campbell on private type with exported fieldsBrian Campbell2009-11-20T21:34:05Z2009-11-20T21:34:05ZYep, I tested this with the compiler, this does work.http://stackoverflow.com/questions/687014/removing-created-temp-files-in-unexpected-bash-exit/687033#687033Comment by Brian Campbell on Removing created temp files in unexpected bash exitBrian Campbell2009-11-18T14:37:50Z2009-11-18T14:37:50ZWell, the backticks work fine in this comment, but that's a fair point, it is good to be in the habit of using <code>$()</code>. Added the double quotes as well.http://stackoverflow.com/questions/1753685/how-should-i-construct-a-finance-dsl/1753818#1753818Comment by Brian Campbell on How should I construct a finance DSL?Brian Campbell2009-11-18T06:03:22Z2009-11-18T06:03:22ZThere are advantages to both approaches. I find it's better to start with an embedded DSL, as you're less likely to spend lots of time up front re-implementing something that's already been implemented better in your host language for no reason; then if it turns out that a better syntax really will help you express your ideas (which it can in some cases), you can write your parser and have it use everything you built for your embedded DSL on the back end. Likewise, when I'm designing macros in Scheme, I try to design a good regular API first, and just use the macro as a thin layer over thet.http://stackoverflow.com/questions/1750937/i-need-high-performance-will-there-be-a-difference-if-i-use-c-or-c/1750958#1750958Comment by Brian Campbell on I need high performance. Will there be a difference if I use C or C++?Brian Campbell2009-11-17T21:44:36Z2009-11-17T21:44:36Z@Juliet: Actually, no. For small problem sets, the O(n^2) algorithm may be faster than an O(log n) or even an O(1) algorithm. For instance, associations of 10 or 15 elements, doing linear, O(n), search on a linked list is faster than using a hash table, which is O(1) (and if you problem consists of doing lots and lots of operations on small associations, linked lists may be much faster than using hash tables). The big-O complexity only talks about the performance characteristics on <i>large</i> data sets.