J concerns

I'm not sure how having a header template and an omit template for the same language on one page will behave. If we find a way to do counts of omitted tasks and completed tasks later, this may screw things up, but for now I guess it's OK (especially since the explanation is a bit more than the usual HTML comment). --Mwn3d 13:25, 20 October 2009 (UTC)

Oh, I just assumed this was the "proper" way to omit a task. Use the omit template, but include a brief explanation of why the task isn't suited to the language -- I think this gives nearly as much useful information about the language as a "solved" task. Not that I have any say in the matter, but I recommend that the ImplSearchBot gives "omit" priority over "header", such that if both are present, the language is counted as omitted. --DanBron 14:06, 20 October 2009 (UTC)
Yeah I don't think we really have solid directions on how to use the omit from template yet. The whole ImplSearchBot idea is kind of in flux right now. Maybe once we decide how (or if) we want ImplSearchBot to work we can nail down how the templates should work. --Mwn3d 14:13, 20 October 2009 (UTC)
The MultiCategorySearch extension is The Way To Go right now. There are still a bunch of mundane tasks that a bot could automate, though. Like creating Reports: pages for each language, or automatically creating category pages when languages show up. I had the idea Sunday night of having one bot do all of those things, and have its workload tuned by way of reading its instructions from a protected wiki content page.
The Reports: pages are already tunable in behavior by modifying the arguments for the MCS transclusions. Fix it however it needs to be fixed. The RCBF, RCSNUSP et al pages look like they're going to need a reorganization, though; subcategories don't count as being in a category. That's a limitation of the MW database schema, would incur extra DB processing cost to work around, and opens a can of worms regarding recursive diving into categories. --Michael Mol 16:24, 20 October 2009 (UTC)

Javascript/JSON

I'm getting a syntax error for "{ apple, banana, cherry }", both Javascript and JSON variants. Is there some flavor that supports this syntax? --MizardX 12:39, 27 May 2010 (UTC)

Bad task description?

The task description says: "Create an enumeration of types with and without values." But none of the solutions seem to do that. Some of the solutions seem to create an enumeration of integers.

If I wanted to create an enumeration of types, I would do something like: <lang ruby># Ruby [String, Integer, Float, File, Thread].each { |type| puts type }

{String: "a sequence of bytes or characters",

Integer: "a number like 33",
Float: "a number like 33.0",
File: "an open file",
Thread: "a concurrent task"}.each { |type, value| puts type, value }</lang>

--Kernigh 00:44, 15 March 2011 (UTC)

I think the word "types" is getting you. Maybe it should just be "an enumeration of fruits" since most of the examples seem to use apples, bananas, and cherries. --Mwn3d 00:47, 15 March 2011 (UTC)
Return to "Enumerations" page.