User JS Bangs - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T15:40:07Zhttp://stackoverflow.com/feeds/user/8078http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1902901/show-current-instruction-in-gdb0Show current instruction in gdbJS Bangs2009-12-14T19:17:22Z2009-12-18T05:30:04Z
<p>I'm doing some assembly-level debugging in gdb. Is there a way to get gdb to show me the current assembly instruction in the same way that it shows the current source line? The default output after every command looks like this:</p>
<pre><code>0x0001433f 990 Foo::bar(p);
</code></pre>
<p>This gives me the address of the current instruction, but I have to keep referring back to the output of <code>disassemble</code> in order to see which instruction I'm currently executing.</p>
http://stackoverflow.com/questions/1924230/running-legacy-non-reentrant-code-on-a-background-thread-in-net/1924283#19242831Answer by JS Bangs for Running Legacy, Non-Reentrant Code on a Background Thread in .NETJS Bangs2009-12-17T20:14:57Z2009-12-17T20:14:57Z<p>I'll assume that you actually have a good reason for wanting a thread pool that only has one thread. In that case, I only spot one major flaw: Why are you using <code>Action<T></code> when you are always passing <code>null</code>? Just use <code>Action</code>, which takes no arguments.</p>
http://stackoverflow.com/questions/1924127/c-app-how-to-move-all-resources-out-of-the-main-assembly/1924178#19241781Answer by JS Bangs for C# app - How to move all resources out of the main assemblyJS Bangs2009-12-17T19:57:05Z2009-12-17T19:57:05Z<p>Create a separate project called MyApp.Resources that only contains your resources. Have your main project depend on/refer to that project.</p>
http://stackoverflow.com/questions/1915759/forward-declaration-and-typeid/1915814#19158142Answer by JS Bangs for Forward declaration and typeidJS Bangs2009-12-16T16:23:24Z2009-12-16T16:23:24Z<p>I think that the problem you are trying to solve is much better handled by a virtual method:</p>
<pre><code>class A
{
public:
virtual bool Check() { return false; };
}
class B : public A
{
public:
// override A::Check()
virtual bool Check() { return true; };
}
</code></pre>
<p>Methods in the base class A should not need to know whether the object is "really" an A or a B. That's a violation of basic object-oriented design principles. If the behavior needs to change when the object is a B, then that behavior should be defined in B and handled by virtual method calls.</p>
http://stackoverflow.com/questions/1910317/unexpected-result-when-adding-to-pointer/1910334#191033411Answer by JS Bangs for unexpected result when adding to pointerJS Bangs2009-12-15T20:52:09Z2009-12-15T20:52:09Z<pre><code>a+3 == a + (3 * sizeof(int)) == a + 12 == 17 + 12 == 29
</code></pre>
http://stackoverflow.com/questions/1909952/implementation-of-a-simple-algorithm-to-calculate-probability/1909983#19099837Answer by JS Bangs for Implementation of a simple algorithm (to calculate probability)JS Bangs2009-12-15T20:00:39Z2009-12-15T20:00:39Z<p>Your algorithm is missing a key step: putting the card on the table. If you draw the black-red card, there is no guarantee that the black side is showing when you put it down. Add an additional step to simulate selecting randomly one of the sides of each card, then determine how many cases show a black face, and then how many of <em>those</em> cases have the black-black card showing.</p>
http://stackoverflow.com/questions/1903225/vim-finds-incorrect-matching-bracket-when-using/1903273#19032734Answer by JS Bangs for Vim finds incorrect matching bracket when using %JS Bangs2009-12-14T20:25:36Z2009-12-15T19:52:39Z<p>This happens because:</p>
<ol>
<li>You have an actual syntax error with a mismatched paren or curly brace somewhere.</li>
<li>You have a value in <code>cpoptions</code> that prevents semi-intelligent brace matching. Look up <code>:help cpoptions</code> and <code>:help %</code>.</li>
<li>You have something too sophisicated for plain old Vim matching to handle. Try installing the <code>matchit</code> plugin, which may help. Common culprits are braces inside comments or regexes.</li>
</ol>
http://stackoverflow.com/questions/1909232/c-initializing-a-variable-with-using/1909241#19092410Answer by JS Bangs for C#: Initializing a variable with "using"JS Bangs2009-12-15T18:02:27Z2009-12-15T18:02:27Z<p>When the <code>sqlConnection</code> variable goes out of scope (at the end of the bracketed block), the <code>Dispose()</code> method will automatically be called.</p>
http://stackoverflow.com/questions/1902095/regex-for-string-enclosed-in-c/1902119#19021197Answer by JS Bangs for Regex for string enclosed in <*>, C#JS Bangs2009-12-14T16:58:53Z2009-12-14T16:58:53Z<p>You'll get most of what what you want by using the regex <code>/<([^>]*)>/</code>. (No need to escape the angle brackets' as angle brackets aren't special characters in most regex engines, including the .NET engine.) The regex I provided will also capture trailing whitespace and any attributes on the tag--parsing those things reliably is way, way beyond the scope of a reasonable regex.</p>
<p>However, be aware that if you're trying to parse XML/HTML with a regex, <a href="http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454">that way lies madness</a></p>
http://stackoverflow.com/questions/1891404/how-do-you-create-an-english-like-word/1891415#18914157Answer by JS Bangs for How do you create an english like word?JS Bangs2009-12-11T22:55:34Z2009-12-11T22:55:34Z<p>Consider <a href="http://listserv.brown.edu/archives/cgi-bin/wa?A2=ind0608A&L=CONLANG&P=R1976" rel="nofollow">this algorithm</a>, which is really just a degenerate case of a <a href="http://en.wikipedia.org/wiki/Markov_chain#Markov_text_generators" rel="nofollow">Markov chain</a>.</p>
http://stackoverflow.com/questions/1891190/operator-cannot-be-applied-to-operands-of-type-bool/1891206#18912061Answer by JS Bangs for Operator '&&' cannot be applied to operands of type 'bool' JS Bangs2009-12-11T22:11:24Z2009-12-11T22:11:24Z<p>You can absolutely do this, but there must be something else going on. Can you present a more complete code sample, and print the compiler error?</p>
http://stackoverflow.com/questions/1889596/vim-mappable-unused-shortcut-letters/1889678#18896786Answer by JS Bangs for VIM: Mappable (unused) shortcut letters?JS Bangs2009-12-11T17:40:41Z2009-12-11T17:40:41Z<p>Every single ASCII character, upper and lower case, is used for something in Vim. So you're going to wind up overwriting <em>something</em>--just pick something that you don't use. It may help to use a common idiom for your own extensions. I use a leading comma, for example:</p>
<pre><code>map ,w :w!<CR>
map ,e :e #<CR>
imap ,, <ESC>
</code></pre>
<p>(The last is particularly useful for me, since I pretty much never need to write two consecutive commas in insert mode, and it's nice not to have to go all the way to the Esc key.)</p>
http://stackoverflow.com/questions/1889602/multiple-vim-configurations/1889646#18896466Answer by JS Bangs for Multiple vim configurations?JS Bangs2009-12-11T17:36:48Z2009-12-11T17:36:48Z<p>I have this in <code>$HOME/.vimrc</code>:</p>
<pre><code>if filereadable(".vim.custom")
so ".vim.custom"
endif
</code></pre>
<p>This allows me to put a <code>.vim.custom</code> file in every directory to load commands and options specific to that directory. If you're working on multiple projects that have deep directory structures you might need something more sophisticated (e.g. walk up the directory tree until a <code>.vim.custom</code> is found), but the same basic idea will work.</p>
http://stackoverflow.com/questions/1889065/fast-similarity-detection/1889111#18891110Answer by JS Bangs for fast similarity detectionJS Bangs2009-12-11T16:14:35Z2009-12-11T16:14:35Z<p>Can we assume that similarity is transitive, ie. <code>diff(a,c) == diff(a,b) + diff(b,c)</code>? If so, you can try the following:</p>
<ol>
<li>Sort the collection of objects. If the object similarity metric doesn't have a decent absolute value, you can arbitrarily select one object as "zero" and sort all other objects by their similarity to that object.</li>
<li>To find the objects with similarity <code>s</code> to <code>o</code>, find <code>o</code> in the sorted list, and search to the left and to the right until the diff grows larger than <code>s</code>.</li>
</ol>
<p>The advantage of this is that the sorting can be done once, and subsequent set building is proportional to the number of members that will be in the set.</p>
http://stackoverflow.com/questions/1884620/how-to-prevent-subscribers-to-an-event-from-conflicting-with-each-other/1884640#18846401Answer by JS Bangs for How to prevent subscribers to an event from conflicting with each other?JS Bangs2009-12-10T22:46:59Z2009-12-10T22:46:59Z<p>All of the individual event subscribers need to play well with others. The proper thing is for the event that shows the MessageBox to launch a background thread and show the MessageBox from there.</p>
http://stackoverflow.com/questions/1884209/initializing-a-public-char-buffer-dynamically/1884245#18842450Answer by JS Bangs for Initializing a public char buffer dynamicallyJS Bangs2009-12-10T21:40:12Z2009-12-10T21:40:12Z<p>I recommend an RAII idiom:</p>
<ul>
<li>Make the constructor for Pkg take a <code>length</code> parameter, and allocate <code>buf</code> in the constructor with <code>new char[length]</code>.</li>
<li>Make the destructor for Pkg do <code>delete[] buf</code></li>
</ul>
<p>Then every time through the loop, you simply create a new <code>Pkg</code> object with the desired length.</p>
http://stackoverflow.com/questions/1883786/what-is-an-alternative-to-having-static-abstract-methods/1883873#18838731Answer by JS Bangs for What is an alternative to having static abstract methods?JS Bangs2009-12-10T20:41:46Z2009-12-10T20:48:30Z<p>Add another level of indirection. The <code>GetAvailableSpells</code> method isn't really an instance method, since it's the same for all instances. As you pointed you, you can't have an abstract static method, so instead move the type-specific stuff into an instance-based class factory. In the example below, <code>AvailableSpells</code> is a method of the <code>MagicSchool</code> abstract class, which has concrete subclasses <code>BlackMagic</code>, <code>WhiteMagic</code>, etc. The <code>Wizard</code> also has sub-types, but every <code>Wizard</code> can return the <code>MagicSchool</code> that it belongs to, giving you a type-safe, type-independent way to find out what the spells for any given <code>Wizard</code> object are without separate tables or code duplication.</p>
<pre><code>public abstract class MagicSchool
{
public abstract string[] AvailableSpells { get; }
public abstract Wizard CreateWizard();
}
public abstract class Wizard
{
protected Wizard(MagicSchool school)
{
School = school;
}
public abstract Cast(string spell);
MagicSchool School
{
public get;
protected set;
}
}
public class BlackMagic : MagicSchool
{
public override AvailableSpells
{
get
{
return new string[] { "zoogle", "xclondon" };
}
}
public override Wizard CreateWizard()
{
return new BlackWizard(this);
}
}
public class BlackWizard : Wizard
{
public BlackWizard(BlackMagic school)
: base(school)
{
// etc
}
public override Cast(string spell)
{
// etc.
}
}
// continue for other wizard types
</code></pre>
http://stackoverflow.com/questions/1876999/does-c-still-have-a-legitimate-place-in-business-programming/1877107#18771072Answer by JS Bangs for Does C++ still have a legitimate place in business programming?JS Bangs2009-12-09T21:41:41Z2009-12-09T21:41:41Z<ol>
<li>At least 50% of my job is C++.</li>
<li>Interacting with COM (both third-party classes and our own team's objects).</li>
<li>It's a good skill to have. Not a requirement the way basic C is, but still a good idea.</li>
</ol>
http://stackoverflow.com/questions/1854353/writing-formatted-data-of-unknown-length-to-a-string-c-programming/1854365#18543654Answer by JS Bangs for writing formatted data of unknown length to a string (C programming)JS Bangs2009-12-06T04:29:47Z2009-12-06T04:29:47Z<p>What you want is <code>snprintf</code> (<a href="http://libslack.org/manpages/snprintf.3.html" rel="nofollow">http://libslack.org/manpages/snprintf.3.html</a>). It takes the length of the output buffer as its second argument, and if the buffer is too small for the result it will return the number of characters needed, allowing you to reallocate a larger buffer.</p>
http://stackoverflow.com/questions/1849733/c-type-parameters-in-constructor-no-generics/1849768#18497683Answer by JS Bangs for C# - Type Parameters in Constructor - No GenericsJS Bangs2009-12-04T21:32:08Z2009-12-04T21:32:08Z<p>Your real problem is not in the generics or lack thereof. Your real problem is that <code>MyWFCClass</code> is calling both <code>new</code> and the method. As per <a href="http://misko.hevery.com/code-reviewers-guide/" rel="nofollow">Misko Hevery</a>, you get the best testability by separating classes that call <code>new</code> from classes that implement logic. Instead of having <code>MyWFCClass</code> somehow know the type that you want to implement and using reflection, just pass the <code>IUserDal</code> object to the constructor, allowing the test harness to pass in a mock object when needed.</p>
<p>If, for some reason, you can't do this and you can't use generics, then you have to do it yourself. Pass a <code>Type</code> object to the <code>MyWFCClass</code> constructor, then use reflection to find and invoke the constructor you want.</p>
http://stackoverflow.com/questions/1766492/c-overloading-operator-versus-equals2C# overloading operator== versus Equals()JS Bangs2009-11-19T21:00:12Z2009-12-04T19:56:29Z
<p>I'm working on a C# project for which, until now, I've used immutable objects and factories to ensure that objects of type <code>Foo</code> can always be compared for equality with <code>==</code>. <code>Foo</code> objects can't be changed once created, and the factory always returns the same object for a given set of arguments. This works great, and throughout the code base we assume that <code>==</code> always works for checking equality.</p>
<p>Now I need to add some functionality that introduces an edge case for which this won't always work. The easiest thing to do is to overload <code>operator ==</code> for that type, so that none of the other code in the project needs to change. But this strikes me as a code smell: overloading <code>operator ==</code> and not <code>Equals</code> just seems weird, and I'm used to the convention that <code>==</code> checks reference equality, and <code>Equals</code> checks object equality (or whatever the term is).</p>
<p>Is this a legitimate concern, or should I just go ahead and overload <code>operator ==</code>?</p>
http://stackoverflow.com/questions/1842681/regular-expression-to-remove-one-parameter-from-query-string/1842750#18427501Answer by JS Bangs for Regular expression to remove one parameter from query stringJS Bangs2009-12-03T20:37:00Z2009-12-03T20:37:00Z<p>Having a query string that starts with <code>&</code> is harmless--why not leave it that way? In any case, I suggest that you search for the trailing ampersand and use <code>\b</code> to match the beginning of foo w/o taking in a previous character:</p>
<pre><code> /\bfoo\=[^&]+&?/
</code></pre>
http://stackoverflow.com/questions/1822811/int-array-to-string/1822819#18228193Answer by JS Bangs for int array to stringJS Bangs2009-11-30T22:22:08Z2009-11-30T22:22:08Z<pre><code> String.Join("", new List<int>(array).ConvertAll(i => i.ToString()).ToArray());
</code></pre>
http://stackoverflow.com/questions/1822729/how-do-i-grab-only-one-capture-out-of-a-perl-regular-expression/1822748#18227488Answer by JS Bangs for How do I grab only one capture out of a Perl regular expression?JS Bangs2009-11-30T22:10:14Z2009-11-30T22:10:14Z<p>You want:</p>
<pre><code>my ($date) = ($xml_file =~ m/(\d+)-sys_char/);
</code></pre>
<p>This will get you <code>$1</code> in <code>$date</code>. As for the second part of your question, there's no way to get all of the numbered matches in a single variable, but you can get them all into an array like this:</p>
<pre><code>my @matches = ($xml_file =~ m/(\d+)-sys_char/);
</code></pre>
<p>These are actually the same syntax: when the left hand side of a match like this is an array, then an array containing all of the submatches is returned. The first version make <code>($date)</code> into a one-element array, throwing away the rest of the sub-matches.</p>
http://stackoverflow.com/questions/1766875/awk-how-to-specify-field-separator-as-binary-value-0x1/1766909#17669092Answer by JS Bangs for awk - how to specify field separator as binary value 0x1JS Bangs2009-11-19T22:06:18Z2009-11-19T22:06:18Z<pre><code>#!/bin/awk -f
BEGIN { FS = "\x01" }
/FIELD/ { print $1 }
</code></pre>
<p>See <a href="http://www.gnu.org/manual/gawk/html%5Fnode/Escape-Sequences.html" rel="nofollow">http://www.gnu.org/manual/gawk/html%5Fnode/Escape-Sequences.html</a>.</p>
http://stackoverflow.com/questions/1751989/c-lazy-regular-expression-matching/1752034#17520341Answer by JS Bangs for C# Lazy Regular Expression MatchingJS Bangs2009-11-17T21:41:24Z2009-11-17T21:41:24Z<p>If you know that the date is always followed by a known string, I'd change the regex to force matching that string:</p>
<pre><code>^.*(\\d{6,8})\.log$
</code></pre>
<p>This will force the regex engine to consume all 8 digits in order to match the trailing <code>\.log</code>.</p>
http://stackoverflow.com/questions/1751616/segmentation-fault-adaptive-huffman-tree/1751636#17516360Answer by JS Bangs for Segmentation Fault - Adaptive Huffman TreeJS Bangs2009-11-17T20:43:44Z2009-11-17T20:43:44Z<p>Look at this:</p>
<pre><code>root = NULL;
currentNYT = malloc(sizeof(node));
currentNYT = root;
</code></pre>
<p>You set <code>root</code> to <code>NULL</code>, then you set <code>currentNYT</code> to <code>root</code>. Therefore <code>currentNYT</code> is always <code>NULL</code>.</p>
http://stackoverflow.com/questions/1750567/regex-to-match-script-tag/1750594#175059410Answer by JS Bangs for RegEx to match <script> tag?JS Bangs2009-11-17T17:49:39Z2009-11-17T17:49:39Z<p>I don't think anything else needs to be said other than <a href="http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454">http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454</a>.</p>
http://stackoverflow.com/questions/1735982/are-strongly-typed-arraylists-the-better-choice-in-c/1736000#173600014Answer by JS Bangs for Are Strongly typed ArrayLists the better choice in C#?JS Bangs2009-11-14T23:39:31Z2009-11-15T15:44:05Z<p>What you want is a <em>generic</em>, like <code>List<T></code>.</p>
<pre><code>public class Emails : List<Email>
{
}
</code></pre>
<p>This has all of the methods of ArrayList and then some, and you get type safety without having to do any extra work.</p>
<p>Note, however, that inheriting from <code>List<T></code> can sometimes cause you more trouble than it's worth. A better idea is to implement <code>ICollection<T></code> or <code>IEnumerable<T></code>, and use the <code>List<T></code> internally to implement the interface.</p>
http://stackoverflow.com/questions/1735978/manipulate-hyper-v-from-net/1736008#17360081Answer by JS Bangs for Manipulate Hyper-V from .NETJS Bangs2009-11-14T23:42:59Z2009-11-14T23:42:59Z<p>System Center Virtual Machine Manager comes with a very good set of .NET assemblies, which you can freely reference in your app. It also has an excellent Powershell interface for easy scripting.</p>
<p>However, if you're working with raw Hyper-V and not SCVMM, then I don't know. See if you can get your boss to spring for SCVMM.</p>
http://stackoverflow.com/questions/1923158/programatically-invoke-garbage-collectorComment by JS Bangs on Programatically invoke garbage collector JS Bangs2009-12-17T17:25:19Z2009-12-17T17:25:19ZThat was supposed to be <code>SecureString</code>: <a href="http://msdn.microsoft.com/en-us/library/system.security.securestring.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/1923158/programatically-invoke-garbage-collector/1923169#1923169Comment by JS Bangs on Programatically invoke garbage collector JS Bangs2009-12-17T17:08:03Z2009-12-17T17:08:03ZFurthermore, you don't want it to be deterministic. The GC knows more than you do about when to collect your garbage. The only exception is when your object holds native resources or disposable objects, in which case you should be sure to implement IDisposable.http://stackoverflow.com/questions/1910633/are-spinlocks-a-good-choice-for-a-memory-allocator/1910652#1910652Comment by JS Bangs on Are spinlocks a good choice for a memory allocator?JS Bangs2009-12-15T21:54:38Z2009-12-15T21:54:38ZCan you support your assertion that they're useless? References? Arguments?http://stackoverflow.com/questions/1910317/unexpected-result-when-adding-to-pointer/1910345#1910345Comment by JS Bangs on unexpected result when adding to pointerJS Bangs2009-12-15T21:19:34Z2009-12-15T21:19:34Z@DavidThornley, this (and the blue-demons-out-your-nose meme in general) makes me want to write a C compiler that aggresively does ridiculous things when presented with undefined behavior.http://stackoverflow.com/questions/1910317/unexpected-result-when-adding-to-pointer/1910345#1910345Comment by JS Bangs on unexpected result when adding to pointerJS Bangs2009-12-15T20:55:01Z2009-12-15T20:55:01ZNot quite. If he tried to <i>dereference</i> <code>a</code> he'd almost certainly get a segfault, but he's printing the value of the pointer as an int.http://stackoverflow.com/questions/1909952/implementation-of-a-simple-algorithm-to-calculate-probability/1909983#1909983Comment by JS Bangs on Implementation of a simple algorithm (to calculate probability)JS Bangs2009-12-15T20:37:26Z2009-12-15T20:37:26ZYou need to stop ignoring the red card and make the draw step more explicit in order to understand what's going on. @David Thornley and @matt b both have the right answer.
The moral of the story is: don't skip steps in your algorithm just because you don't think they contribute to the result.http://stackoverflow.com/questions/1903225/vim-finds-incorrect-matching-bracket-when-using/1909918#1909918Comment by JS Bangs on Vim finds incorrect matching bracket when using %JS Bangs2009-12-15T19:56:24Z2009-12-15T19:56:24ZYeah, comments and regexes are the usual culprits when I have this problem. This was meant to be implied by #3 in my list.http://stackoverflow.com/questions/1903225/vim-finds-incorrect-matching-bracket-when-using/1903273#1903273Comment by JS Bangs on Vim finds incorrect matching bracket when using %JS Bangs2009-12-15T19:53:09Z2009-12-15T19:53:09ZComments were meant to be included in #3. I should have been more explicit, because braces in comments is a common scenario that I had in mind when I wrote #3.http://stackoverflow.com/questions/1891521/convert-xmlnodelist-to-xmlnode/1891531#1891531Comment by JS Bangs on Convert XmlNodeList to XmlNode[]JS Bangs2009-12-11T23:34:40Z2009-12-11T23:34:40Z+1 to itowlson. I didn't even notice that myself looking at the docs!http://stackoverflow.com/questions/1884620/how-to-prevent-subscribers-to-an-event-from-conflicting-with-each-other/1884640#1884640Comment by JS Bangs on How to prevent subscribers to an event from conflicting with each other?JS Bangs2009-12-10T22:58:52Z2009-12-10T22:58:52ZYou can work around the UI thread requirement. One idea is to enqueue and event consumed by the main thread that causes the message box to appear.http://stackoverflow.com/questions/1884261/c-onclosing-takes-a-while-how-can-i-show-a-dialog-with-a-marquee-progressbarComment by JS Bangs on C# : OnClosing takes a while, how can I show a dialog with a marquee progressbar ?JS Bangs2009-12-10T21:45:59Z2009-12-10T21:45:59ZIs there any reason you can't create the dialog as the first thing in <code>OnClosing</code>?http://stackoverflow.com/questions/1883786/what-is-an-alternative-to-having-static-abstract-methods/1883873#1883873Comment by JS Bangs on What is an alternative to having static abstract methods?JS Bangs2009-12-10T21:09:57Z2009-12-10T21:09:57ZSo make that part of the constructor for <code>MagicSchool</code> or the equivalent thereof... I don't see how this is a big problem.http://stackoverflow.com/questions/1879400/how-to-prevent-a-globally-overridden-new-operator-from-being-linked-in-from-extComment by JS Bangs on How to prevent a globally overridden "new" operator from being linked in from external libraryJS Bangs2009-12-10T18:54:46Z2009-12-10T18:54:46ZXCode implies MacOSX, with XCode's compiler/linker (whose proper name I don't know).http://stackoverflow.com/questions/1861546/strongly-typed-languages-for-web-programming/1861558#1861558Comment by JS Bangs on Strongly-typed languages for web programmingJS Bangs2009-12-07T17:36:08Z2009-12-07T17:36:08ZI pity the fool who tries to use C++ for web development. Java is tolerable, though.http://stackoverflow.com/questions/1849772/what-happens-on-this-my-declaration-perl/1849784#1849784Comment by JS Bangs on What happens on this my declaration? [ Perl ]JS Bangs2009-12-04T21:38:55Z2009-12-04T21:38:55ZThis aspect of Perl6 has been made available in 5.10. It won't work in 5.8 and earlier.