Test


Guinea Pig Knowledge Base
Introduction
Guinea pigs (Cavia porcellus) are small, sociable rodents known for their adorable squeaks and fluffy coats. They originate from the Andes and have been domesticated for centuries. Mine are very cute.
Fun Facts

PXL_20230831_110224518.MP.jpg
Feeding Schedule
We generally feed a variety of bok choy, capsicum, cos lettuce, celery leafs, zucchini, parsley, coriander. It's great for them to have branches to nibble on- ask Anne and Randall for some hazelnut branches.

Dangerous Food

Guinea pigs are not allowed alliums (onions, garlic, etc.), avocado, rhubarb, or iceberg lettuce.

Morning Feeding:
1/2 cup of vegetables per guinea pig.

We have trained them to respond to "pigs!", "handsies", and "yip yip!". Basically anything high-pitched and loud, or plastic rustling will set them off. They love being fed through the cage bars.


Evening Feeding:

Bedtime Feeding:

Cleaning Routine
We generally do this just before going to bed.
Downstairs Area:
Sweep out poops daily
Clean and refill water bottle as needed
Upstairs Area:


class GuineaPig {
  name: string;
  age: number;

  constructor(name: string, age: number) {
    this.name = name;
    this.age = age;
  }

  squeak(): void {
    console.log(`${this.name} says: Squeak squeak!`);
  }
}

const peggy = new GuineaPig("Peggy", 2);
peggy.squeak();

using System;

class GuineaPig {
    public string Name { get; set; }
    public int Age { get; set; }

    public GuineaPig(string name, int age) {
        Name = name;
        Age = age;
    }

    public void Squeak() {
        Console.WriteLine($"{Name} says: Squeak squeak!");
    }
}

class Program {
    static void Main() {
        GuineaPig hildy = new GuineaPig("Hildy", 2);
        hildy.Squeak();
    }
}

Last modified by rhys @ 3/3/2025 8:07:44 PM

Comments

Login to leave a comment.

Test comment please ignore

Avatar rhys   

3/3/2025 8:08:02 PM

View all comments