User talk:TimToady: Difference between revisions

From Rosetta Code
Content added Content deleted
Line 31: Line 31:
==Suggest Tasks Favourable To Perl 6?==
==Suggest Tasks Favourable To Perl 6?==
Hi Larry, after writing so many Perl 6 examples, I wondered if you had any suggestions for new tasks that might round out the tasks available on RC? --[[User:Paddy3118|Paddy3118]] 16:04, 31 August 2010 (UTC)
Hi Larry, after writing so many Perl 6 examples, I wondered if you had any suggestions for new tasks that might round out the tasks available on RC? --[[User:Paddy3118|Paddy3118]] 16:04, 31 August 2010 (UTC)

==On "That Goes Without Saying (or Does It)"==
I liked the use of RC. Not much the language comparisons made, although it was good to see how Perl 6 did things. A longer review is here: [http://paddy3118.blogspot.com/2011/03/that-goes-without-saying-or-does-it-it.html "That Goes Without Saying (or Does It)". It didn't!]. --[[User:Paddy3118|Paddy3118]] 07:37, 12 March 2011 (UTC)

Revision as of 07:37, 12 March 2011

Welcome to Rosetta Code! I'm Mike, and I noticed you created an account.

Some quick things you should be aware of:

Template:Mylang Helps you show what languages you're familiar with, and helps us become aware of skills with languages we haven't seen.
Category:Unimplemented tasks by language A place to find tasks missing solutions in various languages.
Blogs, twitter, facebook... We have them, and are interested in yours.
Special:Webchat Logs you into #rosettacode on the Freenode IRC channel. Not usually the most active communications medium, but occasionally helpful. It's logged at http://irclog.perlgeek.de/rosettacode/today.
Rosetta Code:Village Pump A general Q/A and discussion area.
Rosetta Code:Finances For most of Rosetta Code's history, expenses have been paid out of my pocket. I can't afford that much longer, and so you can see the state of Rosetta Code's finances, and how you may help. If you enjoy or are excited about the site, please consider reading through it.

Sorry for the boilerplate; it can be a bit difficult giving an individual greeting to each person. If you post information about your technical interests and background, I'll probably read it. If you already have put that kind of information on your user page, I probably already have; I'm always interested in how people do and can benefit from Rosetta Code. --Michael Mol 00:23, 26 August 2010 (UTC)

Multiplication Table Output glitch

You might want to check this output. The axis '+' is off. --Paddy3118 03:50, 27 August 2010 (UTC)

Hi Tim, i see you've made an edit, but the problem persists. I'll go into it a little more:
I see the following:
<lang> x┃ 1 2 3 4 5 6 7 8 9 10 11 12
━━━╋━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  1┃   1   2   3   4   5   6   7   8   9  10  11  12</lang>
When I think it should be:
<lang> x┃ 1 2 3 4 5 6 7 8 9 10 11 12
━━╋━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  1┃   1   2   3   4   5   6   7   8   9  10  11  12</lang> 
I think you may have a field width off by one or two too many? --Paddy3118 04:06, 27 August 2010 (UTC)

Hi again, I see you made another edit. I checked the Python entry which uses Unicode characters for the table but shows the output under the lang tag. I temporarily edited the Perl 6 output to show what happens when the output uses lang python, and it still looked 'off'. All I can suggest is to look at the output of the Python or other examples that seem to have the output you are after and compare the outputs character-by-character to find out what is happening. --Paddy3118 05:55, 27 August 2010 (UTC)

I don't think my output is off. It works fine in my browser, and in my constant width terminal screens from which pasted the output. $width is 3, and that's how many ━ characters it is supposed to be putting out, and that's how many it is putting out before the ╋. I wonder if your font widths are off somehow in your browser. --Larry

Hi again. What I have found is that on both IE8 and Mozilla 3.6.8 on Windows XP I find the dash that you use to much longer than the space or any other character as they are supposed to be displayed in a mono-spaced font, and indeed, the body of the table is indeed correctly and equally mono-spaced. The dash you use shows up as too long. The non-ASCII dash used in the Python example is of the correct and equal size??? I'll copy this to the appropriate talk page for other input. --Paddy3118 18:39, 27 August 2010 (UTC)

I agree that this is a style issue (or perhaps a character selection issue). When I copy and paste your first example, above, into a fixed with editor window (one that can deal with unicode characters), the formatting looks right (even though it looks wrong in my browser). --Rdm 16:49, 31 August 2010 (UTC)
Give me some CSS that fixes the problem and I'll add it to the sitewide load. --Michael Mol 16:59, 31 August 2010 (UTC)
I do not know how to write the css that would fix this problem. That said, perhaps the issue could be avoided by using the "normal" line drawing characters instead of the "bold" line drawing characters. In other words, using unicode 9472 instead of unicode 9473, 9532 instead of 9547, 9474 instead of 9475, and so on... --Rdm 17:23, 31 August 2010 (UTC)
Shouldn't monospace fonts be the same cell size regardless of weight and oblique properties? Is there a good monospace font out there (of appropriate license) I could use as a webfont? --Michael Mol 18:04, 31 August 2010 (UTC)
There are a lot of issues here (with browsers I think you pick a default font and the browser might use a different font for characters not available in the default font). Anyways unifont looks plausible, though I have not specifically checked its line drawing characters. --Rdm 18:38, 31 August 2010 (UTC)

Suggest Tasks Favourable To Perl 6?

Hi Larry, after writing so many Perl 6 examples, I wondered if you had any suggestions for new tasks that might round out the tasks available on RC? --Paddy3118 16:04, 31 August 2010 (UTC)

On "That Goes Without Saying (or Does It)"

I liked the use of RC. Not much the language comparisons made, although it was good to see how Perl 6 did things. A longer review is here: "That Goes Without Saying (or Does It)". It didn't!. --Paddy3118 07:37, 12 March 2011 (UTC)