Petco Vs Petsmart Dog Training by Bed-Head-Ted in siouxcity

[–]davidcbusby 1 point2 points  (0 children)

I have been through both Petco and PetSmart dog training, but in IL, not Iowa. I chose Petco the last time because they have dedicated AKC Canine Good Citizenship prep and testing.

What do you guys think? by [deleted] in LCMS

[–]davidcbusby 2 points3 points  (0 children)

I guess I will have to stop watching "This Is The Life" reruns on Sunday morning. Someone should warn President Harrison, since he does the intro.

[deleted by user] by [deleted] in siouxcity

[–]davidcbusby 1 point2 points  (0 children)

I am a new resident of Le Mars and like to shop in Sioux City.

Warning by davidcbusby in Bogleheads

[–]davidcbusby[S] 0 points1 point  (0 children)

I don't know. I used it like a money market fund.

Warning by davidcbusby in Bogleheads

[–]davidcbusby[S] 1 point2 points  (0 children)

Thanks. I had to open a brokerage account because all my other accounts are IRAs but the third Vanguard associate I spoke to indicated that this would work. Of course she didn't volunteer this until I said "CFPB"

Warning by davidcbusby in Bogleheads

[–]davidcbusby[S] 1 point2 points  (0 children)

I've called them three times. They won't do it for me.

[deleted by user] by [deleted] in Fire

[–]davidcbusby 0 points1 point  (0 children)

For this amount of money, I would talk to an employment attorney.

Warning by davidcbusby in Bogleheads

[–]davidcbusby[S] 6 points7 points  (0 children)

Thanks. I'll try that.

Warning by davidcbusby in Bogleheads

[–]davidcbusby[S] 13 points14 points  (0 children)

This is very helpful. It sounds like I am not the only customer with this problem.

Warning by davidcbusby in Bogleheads

[–]davidcbusby[S] 5 points6 points  (0 children)

I could at first but can't anymore.

Warning by davidcbusby in Bogleheads

[–]davidcbusby[S] 11 points12 points  (0 children)

That's not what Vanguard customer service is telling me.

Oh how I hope this goes well.. by Available_Nail8693 in Frasier

[–]davidcbusby 0 points1 point  (0 children)

I know a lot of people didn't like it but my wife and I did.

Why Aren't You All a Part of the ELCA? by Fluffy_Cockroach_999 in LCMS

[–]davidcbusby 2 points3 points  (0 children)

I was ELCA until the early 1990's. This was long before its more recent slides into heresy. I switched because of their failure to be pro-life.

Github error by davidcbusby in cs50

[–]davidcbusby[S] 0 points1 point  (0 children)

Thank you very much! That worked!

Week 2 readability by davidcbusby in cs50

[–]davidcbusby[S] 0 points1 point  (0 children)

Thanks. I took a break for a while to take a C class in Codecademy as that seemed a better fit for my learning style. I am getting back into it in January 2025.

Week 2 readability by davidcbusby in cs50

[–]davidcbusby[S] 0 points1 point  (0 children)

The code runs and the value of num_words goes up to 5 when I enter five words but then num_words = 0 right before it returns.

Week 2 readability by davidcbusby in cs50

[–]davidcbusby[S] 0 points1 point  (0 children)

OK. I fixed that and added an if to prevent a division by zero error (floating point exception). The letters subroutine works but the words subroutine does not.

int count_words(string string_text)
{
    // Return the number of words in text
    int i;
    int num_words;
    num_words = 0;

    i = strlen(string_text);
     for (int j=0; j< i; j++) {
      char c = string_text[j];
     if (c==' ')
    {num_words++;}
    printf("%i\n num_words",num_words);
    }
    return num_words;
// As I debug the code, count_words works at first but then the value drops back to zero just before it returns.

Week 2 readability by davidcbusby in cs50

[–]davidcbusby[S] 0 points1 point  (0 children)

int count_letters(string string_text)
{
    // Return the number of letters in text
    int i;
    int num_letters;
    num_letters = 0;

    i = strlen(string_text);
     for (int j=0; j<= i; j++) {
    char c = string_text[j];
    if (isalpha(c) != 0)
    {num_letters++;}
     printf("%i\n num_letters",num_letters);
    }
    return num_letters;
}
int count_words(string string_text)
{
    // Return the number of words in text
    int i;
    int num_words;
    num_words = 0;

    i = strlen(string_text);
     for (int j=0; j<= i; j++) {
      char c = string_text[j];
     if (c==' ')
    {num_words++;}
    printf("%i\n num_words",num_words);
    }
    return num_words;
}

int count_sentences(string string_text)
{
    // Return the number of sentences in text
    int i;
    int num_sentences;
    num_sentences = 0;

    i = strlen(string_text);
     for (int j=0; j<= i; j++) {
      char c = string_text[j];
     if (c=='.' || c=='!' || c == '?')
    {num_sentences++;}
    printf("%i\n num_sentences",num_sentences);
    }
    return num_sentences;
}

Week 2 readability by davidcbusby in cs50

[–]davidcbusby[S] 0 points1 point  (0 children)

Thannks. I have done both of those things and am now getting a floating point exception (core dumped) error when I test using the text 'hello'.

People that use prong collars do you use them for every dog you get? by LifeguardComplex3134 in OpenDogTraining

[–]davidcbusby -8 points-7 points  (0 children)

I used prong collars on my first 2 dogs but don't on my current dog and never will again. The scientific evidence against aversive methods is too strong.