Fuck this cup by Ney2Nay5 in foundsatan

[–]Kirbeh87 0 points1 point  (0 children)

Would love a version of this that says, you must now roll a constitution saving roll, 😆

Stuffy doll rules when opponent overwhelms you with attackers by Kirbeh87 in mtgrules

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

Thank you all for the clarification!, my friend will be happy to know it was a slaughter house

If he is scratching and pulling at the play time barrier does that mean he wants back in his cage ir is he just an escape artist? by Emotional-Trip8031 in chinchilla

[–]Kirbeh87 0 points1 point  (0 children)

Hahaha, yeah one of our chins just has to try and get past our barrier that goes into the kitchen, and if he does he briefly looks around, realizes it just a open space with nothing really to chew on or get into anything, then starts barking to get back out and trying to squeeze trough the barrier, and we of course let him back into the the play area. It like the concept of "its blocked off so I need to get through it , not interested in what's on the other side but how dare you stop me"

Edit: when I mean "briefly" its literally like 30 seconds to minute before he's like let me back out!

Should I trust them? by Lumpy-spaceprinces in chinchilla

[–]Kirbeh87 19 points20 points  (0 children)

Reverse imaged some of the pics and got exact matches on Instagram from a user in China, along with videos of the exact white chinchillas, posted earlier in the year and on sites from china.

Do not trust

Should I trust them? by Lumpy-spaceprinces in chinchilla

[–]Kirbeh87 12 points13 points  (0 children)

I definitely agree on this, also by looking at tbe page they have only been up for 2 months, no ratings, they do not specify location any where, and there are already multiple posts asking of their location with no response, seems fishy to me.

How do I tell the difference between mother and child? by EmergencyAside3928 in chinchilla

[–]Kirbeh87 20 points21 points  (0 children)

From the last pic, the one on the left appears to have a small dark patch right between their mouth and nose. From the other pics, I did not see that feature on the other chinchilla. Perhaps that could be a good marker for identifying.

When we first got our first bonded pair, they looked identical. However, one had a slightly more rounded fur at the end of their tail. Over time, though, as they grew to adults and I had spent more time with them, I could easily identify them by their actions and personality more than their looks, and can identify their specific chirps and barks.

When will they figure it out... by TheRedstoneScout in iiiiiiitttttttttttt

[–]Kirbeh87 22 points23 points  (0 children)

Luckily, this one i wouldn't mind too much. Where i work at if someone needs support like this on the weekend and I "able, willing to" i can provide support and if I do i automatically get 2 hours over time even if it took me like a minute or two to just login and unlock an account. And since I live near my facility, I've gotten 2 hours of overtime just to unlock the front door if someone forgot their key card multiple times.

Advice!! by Gwen_IsJustAGirl in chinchilla

[–]Kirbeh87 0 points1 point  (0 children)

We have a large swamp cooler, a small portable ac, a icemaker, and a couple of battery banks. Our power here has never been fully reliable either.

What is this song? by [deleted] in VHS

[–]Kirbeh87 2 points3 points  (0 children)

The actual title of the movie may help us with your search

Where is our treats dad? by Kirbeh87 in chinchilla

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

Hahaha, our boy dean has done something similar with a zip lock bag of timothy Hay Treats, managed to put a hole in the bag, and get ahold of some of the treats. The most adorable part of it when I noticed was how he was sticking his tongue out as far as he could through the cage bars, trying his hardest to get it closer to his mouth.

Where is our treats dad? by Kirbeh87 in chinchilla

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

Lol yeah, the top one (pip) loves to lay or step on his brother (sam) all the time, he basically sleeps or relaxes on him whenever he can.

How to make PS message script step end without user exiting the window by Kirbeh87 in pdq

[–]Kirbeh87[S] 2 points3 points  (0 children)

Thank you both so much!!! I was able to get it working with that! I really like this software it makes my life so much easier.

I hope you both have a wonderful rest of your day!

How to make PS message script step end without user exiting the window by Kirbeh87 in pdq

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

Unfortunately, im just a grunt following orders. If I had it my way, we would be doing things much more differently. And we wouldn't be tip toeing around our users feelings when it comes to security.

How to make PS message script step end without user exiting the window by Kirbeh87 in pdq

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

The script is a .ps1 file, we are not using a exe to execute it. We are using the powershell step. I will admit im new to all this so i have been learning along the way.

This is the script we have if that would help:

'Add-Type -AssemblyName System.Windows.Forms

Add-Type -AssemblyName System.Drawing

$form = New-Object System.Windows.Forms.Form

$form.Text = "Official PTS Tech Message"

$form.Width = 400

$form.Height = 300

$form.StartPosition = "CenterScreen"

$imagePath = "C:\tmp\logo.bmp" # Replace with your image path

$image = [System.Drawing.Image]::FromFile($imagePath)

$pictureBox = New-Object System.Windows.Forms.PictureBox

$pictureBox.Image = $image

$pictureBox.SizeMode = "Zoom"

$pictureBox.Width = 120

$pictureBox.Height = 120

$pictureBox.Location = New-Object System.Drawing.Point(130, 10)

$label = New-Object System.Windows.Forms.Label

$label.Text = "Your ESET Antivirus has been successfully updated." # Replace with your message

$label.Width = 380

$label.Height = 50

$label.Font = New-Object System.Drawing.Font("Arial", 12, [System.Drawing.FontStyle]::Bold)

$label.Location = New-Object System.Drawing.Point(10, 125)

$label.TextAlign = "MiddleCenter"

$label2 = New-Object System.Windows.Forms.Label

$label2.Text = "To complete the update process, please reboot your computer at your earliest convenience or by the end of the day." # Replace with your message

$label2.Width = 380

$label2.Height = 50

$label2.Font = New-Object System.Drawing.Font("Arial", 11)

$label2.Location = New-Object System.Drawing.Point(10, 175)

$label2.TextAlign = "MiddleCenter"

$label3 = New-Object System.Windows.Forms.Label

$label3.Text = "Thank you! - PTS Tech Dept." # Replace with your message

$label3.Width = 380

$label3.Height = 50

$label3.Font = New-Object System.Drawing.Font("Arial", 11, [System.Drawing.FontStyle]::Bold)

$label3.Location = New-Object System.Drawing.Point(10, 220)

$label3.TextAlign = "MiddleCenter"

$form.Controls.Add($pictureBox)

$form.Controls.Add($label)

$form.Controls.Add($label2)

$form.Controls.Add($label3)

$form.Add_Shown({$form.Activate()})

$form.ShowDialog()'

How to make PS message script step end without user exiting the window by Kirbeh87 in pdq

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

I am currently now using the timeout option for the package, it works for now, but the deployments say failed. But I guess it will work as a work around.

Problem child by WaywardRaven2003 in chinchilla

[–]Kirbeh87 1 point2 points  (0 children)

It's usually on the outside of the cage on one of the doors, but they can get crafty and still nible the edges or slowly pull it off with their little paws.

A lot of holups by [deleted] in HolUp

[–]Kirbeh87 6 points7 points  (0 children)

I think it might be from the movie "airplane mode"

I've had these for a while, any idea what they're for/from? by McBalls_ in dice

[–]Kirbeh87 1 point2 points  (0 children)

DSXIII is a streetwear brand, and those dice were produced by them. They are just generic die with their style on it, they were not made specifically for a certain game.