Jump to content

User talk:TotoBaggins

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by A.Z. (talk | contribs) at 20:05, 18 August 2007 (Finding first edition of a page that contains a text). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Welcome!

Hello, and welcome to Wikipedia. Thank you for your contributions. I hope you like the place and decide to stay. Here are a few good links for newcomers:

I hope you enjoy editing here and being a Wikipedian! By the way, you can sign your name on Talk and vote pages using three tildes, like this: ~~~. Four tildes (~~~~) produces your name and the current date. If you have any questions, see the help pages, add a question to the village pump or ask me on my Talk page. Again, welcome! -- Francs2000 | Talk [[]] 00:04, 9 Feb 2005 (UTC)


Minor edits

Remember to mark your edits as minor only when they genuinely are (see Wikipedia:Minor edit). "The rule of thumb is that an edit of a page that is spelling corrections, formatting, and minor rearranging of text should be flagged as a 'minor edit'." (thanks for all your edits, no matter how minor) -Willmcw 06:09, 12 October 2005 (UTC)[reply]

Main page

Sorry I keep messing up you comment on the talk page for the Main Page. I think I have fixed it now. Damn vandals made everything difficult! By the way, Welcome to Wikipedia! Psy guy (talk) 22:44, 24 October 2005 (UTC)[reply]

Millenium Prize problems is simply a redirect to Clay Mathematics Institute, which is why I removed the link (twice, at least!). Can you please self-revert? TIA ---CH 23:31, 22 August 2006 (UTC)[reply]

I decided to go ahead with it on the theory that at some point MPP would have its own page distinct from CMI. That said, sure, why not?

Well, OK. I am done trying to clean it up anyway. ---CH 23:40, 22 August 2006 (UTC)[reply]

License tagging for Image:Astronomical-Limb.jpg

Thanks for uploading Image:Astronomical-Limb.jpg. Wikipedia gets thousands of images uploaded every day, and in order to verify that the images can be legally used on Wikipedia, the source and copyright status must be indicated. Images need to have an image tag applied to the image description page indicating the copyright status of the image. This uniform and easy-to-understand method of indicating the license status allows potential re-users of the images to know what they are allowed to do with the images.

For more information on using images, see the following pages:

This is an automated notice by OrphanBot. If you need help on selecting a tag to use, or in adding the tag to the image description, feel free to post a message at Wikipedia:Media copyright questions. 14:04, 27 December 2006 (UTC)

Monophyletic pic

Hello, TotoBaggins! I like the new figure you created for Phylogenetics. Is it OK if I adapt it for the Cladistics article? EdJohnston 02:17, 13 January 2007 (UTC)[reply]

Sure, of course. I derived it from another work anyway, since the (para|poly|mono)-phyly distinction wasn't clear to me without a picture, and I figured others might feel the same way.

== Commons POTY identity confirmation ==

I confirm I am the same user as 69.134.237.245 on the POTY vote.

License tagging for Image:Lilac-Chaser.gif

Thanks for uploading Image:Lilac-Chaser.gif. Wikipedia gets thousands of images uploaded every day, and in order to verify that the images can be legally used on Wikipedia, the source and copyright status must be indicated. Images need to have an image tag applied to the image description page indicating the copyright status of the image. This uniform and easy-to-understand method of indicating the license status allows potential re-users of the images to know what they are allowed to do with the images.

For more information on using images, see the following pages:

This is an automated notice by OrphanBot. If you need help on selecting a tag to use, or in adding the tag to the image description, feel free to post a message at Wikipedia:Media copyright questions. 06:06, 7 February 2007 (UTC)

Redundant sentence in lede para and text of Ghostwriter article

Hi, By definition, the body of the article will have material that seems redundant after the lede (intro paragraph), since the lede summarizes the content and key arguments of the article. I think that trimming one of the 2 parts (make the lede's reference shorter, or if you prefer, make the 2nd time it comes up shorter) would have been better than chopping the whole para in the body of the article. Just some ideasNazamo 16:57, 27 February 2007 (UTC)[reply]

Hi, thanks for the suggestion. I felt that it was very awkward for the identical sentence to appear so close to the first instance. Perhaps I should have just reworded it, but I thought it read fine without it. --TotoBaggins 20:19, 27 February 2007 (UTC)

Thank you and a question

Thank you so much for your help! Would it be hard to modify this so that instead of using a single pixel x-column, it uses the average value in a range of x? That is, the sample would come from a wide multi-pixel band. ike9898 15:13, 30 March 2007 (UTC)[reply]

Sure, my pleasure. I'm not a graphics programmer by trade, so dabbling with this kind of thing can be fun. Here's a version that does what you want (I had actually already made that improvement; it helps a bit with the banding).
#!/usr/bin/perl -w

use Image::Magick;
use strict;

use constant MAX_COLOR => 0xFFFF;

sub usage
{
    die "usage: $0 IMAGE-SOURCE REFERENCE-COLUMN-CENTER REFERENCE-COLUMN-WIDTH\n";
}
my $err;
my $fname = shift() or usage();
my $reference_column = shift() or usage();
my $band_width = shift() or usage();

my $src = Image::Magick->new();
$err = $src->Read($fname);
die $err if $err;

my $height = $src->Get('height');
my $width = $src->Get('width');

my $dest = Image::Magick->new();
$err = $dest->Set(size => "${width}x$height");
$err = $dest->ReadImage('xc:white');
die $err if $err;

$" = ',';
my @colors = qw(R G B);
foreach my $y (0 .. $height)
{
    my @ref_pixel;
    print "Doing row $y of $height\n" unless $y % 10;
    foreach my $offset (-$band_width/2 .. $band_width/2)
    {
        my $refcol = $offset + $reference_column;
        my @ref_pixel_el = split ',', $src->Get("pixel[$refcol,$y]");
        for (0 .. 3)
        {
            $ref_pixel[$_] += $ref_pixel_el[$_];
        }
    }
    for (0 .. 3)
    {
        $ref_pixel[$_] /= $band_width;
    }
    foreach my $x (0 .. $width)
    {
        my @pixel = split ',', $src->Get("pixel[$x,$y]");
        foreach my $color (0 .. 2)
        {
            $pixel[$color] += (MAX_COLOR - $ref_pixel[$color]);
            $pixel[$color] = MAX_COLOR if $pixel[$color] > MAX_COLOR;
        }
        $err = $dest->Set("pixel[$x,$y]" => "@pixel");
        die $err if $err;
    }
}
my $box_right  = $reference_column + 1;
$dest->Draw(stroke      => 'red',
            strokewidth => 1,
            primitive   => 'line',
            points      => "$box_right,0 $box_right,$height");


$err = $dest->Write("out-$fname");
die $err if $err;

Umbilical cord

Hey there, TB. You may have already noticed it, but I wanted to let you know about my reply to the question on umbilical cords you asked a few days ago. I wouldn't normally leave a note on a user's talk page except that the original answer you received was dead wrong. :-) --David Iberri (talk) 16:08, 10 April 2007 (UTC)[reply]

Hey, thanks so much for the detailed answer. I'm glad you wrote, as I had missed it. --TotoBaggins 16:36, 10 April 2007 (UTC)[reply]

Reference Desk answers

Your answers and remarks on the Reference Desk(s) are much appreciated. The wry wit and direct responses help keep that place interesting and useful. Regards. dr.ef.tymac 17:14, 24 April 2007 (UTC)[reply]

Hey, thanks for the kind words! I've finally found a positive outlet for my character flaw of being a know-it-all misanthrope. :) --TotoBaggins 17:17, 24 April 2007 (UTC)[reply]

Mental illness post

Hello TotoBaggins, my reply on the reference desk: “what mental illnesses are related to heterosexuality?” was meant to counter what I perceive as an obvious homophobic bias in the Mental IIIness question. It seems to me that the question is really asking “homosexuality is a mental illness, isn’t it?” or at least supporting the view held by some people that homosexuality causes people to go insane or something. My answer was intended to point out the stupidity of associating sexual orientation directly with mental illness, while also giving the questioner the benefit of the doubt. I would appreciate it if you did not jump on me like that in the future. Thanks, S.dedalus 20:12, 8 May 2007 (UTC)[reply]

Hey, sorry! I didn't mean to jump on you at all, but should have been more cautious as I was already feeling contentious after a previous misstep. --TotoBaggins 20:32, 8 May 2007 (UTC)[reply]
No problem, I was just feeling a bit miffed at the whole question. I probably should have avoided the question since I have such strong bias in that aria. S.dedalus 22:37, 8 May 2007 (UTC)[reply]

POTD notification

POTD

Hi TotoBaggins,

Just to let you know that the Featured Picture Image:Moons of solar system v7.jpg is due to make an appearance as Picture of the Day on June 11, 2007. If you get a chance, you can check and improve the caption at Template:POTD/2007-06-11. howcheng {chat} 17:03, 16 May 2007 (UTC)[reply]

Image tagging for Image:MtStSepulchrePanorama-ghosts.jpg

Thanks for uploading Image:MtStSepulchrePanorama-ghosts.jpg. The image has been identified as not specifying the source and creator of the image, which is required by Wikipedia's policy on images. If you don't indicate the source and creator of the image on the image's description page, it may be deleted some time in the next seven days. If you have uploaded other images, please verify that you have provided source information for them as well.

For more information on using images, see the following pages:

This is an automated notice by OrphanBot. For assistance on the image use policy, see Wikipedia:Media copyright questions. 23:09, 18 May 2007 (UTC)[reply]

Clio is back

Your second-best poster is back, Toto, thanks to you and others. How could I possibly let you down? You will find an explanatory note on my talk page. Clio the Muse 23:48, 21 May 2007 (UTC)[reply]

Ref Desk/Humanities' Template

Thanks for the fix.Bielle 01:49, 22 May 2007 (UTC)[reply]

Sure no prob. Just more fallout from the recent gnashing, I guess. --TotoBaggins 01:59, 22 May 2007 (UTC)[reply]

Guano depository

Hah! ---Sluzzelin talk 01:42, 26 May 2007 (UTC)[reply]

Notice

Wikipedia:Reference desk/Seagulls. I think you messed up a wee bit -- Phoeba WrightOBJECTION! 02:17, 26 May 2007 (UTC)[reply]

The Importance of Punctuation

Hiya,

It sounds like the letter you were talking about on the misc reference desk is this one. — Matt Eason (Talk • Contribs) 19:07, 29 May 2007 (UTC)[reply]

Hey, awesome, thanks! I hadn't seen that thing in 20 years. I'm going to start using this line in my breakups: Admit to being useless and inferior.  :) --TotoBaggins 19:27, 29 May 2007 (UTC)[reply]
Haha, no problem :) — Matt Eason (Talk • Contribs) 19:33, 29 May 2007 (UTC)[reply]

Nice knife image

Thanks for telling me about the image you made better. If I knew how to do it myself I would have made it a vector image from the start. Beautiful work, TotoBaggins. Waerloeg 00:49, 10 June 2007 (UTC)[reply]

Hey, thanks for the kind words. I'm barely competent at it myself, but do enjoy puttering around with Inkscape. I definitely have to stick to things like knife blades while I dream about drawing things like this critter. :) --TotoBaggins 01:56, 10 June 2007 (UTC)[reply]
File:Dragonfly morphology edit 3.svg

Picture of the Day

Are you Jeremy.Hinton? Regardless, thanks for sharing this image with us. Very fascinating.--Esprit15d (talk ¤ contribs) 12:03, 14 June 2007 (UTC)[reply]

Nope, my real name is Sean. And while I did tweak a recent Picture of the Day, I've not actually been the main force behind any of them. Thanks for the kind words just the same, though. --TotoBaggins 13:18, 14 June 2007 (UTC)[reply]

Whipped Slave FP Candidate

Just wanted to let you know that I've uploaded a couple of new edits of the whipped slave image for consideration. They may help with the image quality discussion. MamaGeek (talk/contrib) 14:43, 15 June 2007 (UTC)[reply]

Protect articles against POV vandalism

I've replied here. Please enable your email as well if you can. --Matt57 (talkcontribs) 14:45, 26 June 2007 (UTC)[reply]

It was really easy for me to find news sources refering to the polar bear as cute. If you're looking for sources saying something, just search them up in Google. --Matt57 (talkcontribs) 11:57, 27 June 2007 (UTC)[reply]

Belated thanks

Hey, I logged in after a while, and just noticed that you had nominated my mendhi photo as a feature picture. I know it didn't get promoted but thank you very much either way. I appreciate the gesture. Zainub 17:51, 30 June 2007 (UTC)[reply]

Sure. I really liked it! --TotoBaggins 21:37, 6 July 2007 (UTC)[reply]

hadrosaurs thank you

Hi TB - thanks for creating the image map on the hadrosaur family tree. It's a great addition to the image, and to the article! Ciao, Debivort 06:24, 1 July 2007 (UTC)[reply]

Hey, no prob. I love the work that you do! --TotoBaggins 13:18, 1 July 2007 (UTC)[reply]

thanks!

thanks for responding to my question regarding the htoo brothers. i was about their age at the time (well i guess that would mean i still am) so thats why my memory was so vague. thanks again.

Sure, no prob! --TotoBaggins 19:54, 6 July 2007 (UTC)[reply]

Either you have WAY too much time on your hands or you have a better way of finding FP's on a certain subject than I do. :) Specifically, these static shots of vehicles--how'd you come up with it? I assume they're not otherwise collected somewhere or you would've just included that one link instead of each one individually. I've wondered how to easily locate FP's of a certain subject before in order to compare and evaluate FPC's, and this could help me a lot. --Peter 21:32, 24 July 2007 (UTC)[reply]

Bad news: I just have WAY too much time on my hands! It helps to be on the clock. ;) There are some categories in the FP list, but vehicles isn't one of them. --TotoBaggins 21:45, 24 July 2007 (UTC)[reply]

Bearnstar

Bearnstar of Surreal Imagery

I wanted to award you a barnstar for making me laugh, but unfortunately it was eaten by a bear. Rockpocket 22:36, 27 July 2007 (UTC)[reply]
Awesome, my first barnstar, and I love that goofy bear! Thanks! --TotoBaggins 14:08, 30 July 2007 (UTC)[reply]

Finding first edition of a page that contains a text

That code on your userpage looks really useful. Doing it manually takes too much time. How do I use it? I know nothing about computers. A.Z. 20:05, 18 August 2007 (UTC)[reply]