It’s more of a half-sleeve tattoo - chicks love them too I hopeMeh, chicks dig scars.
Now you say that, hear me out here, if you look at your image without the markings, but bear in mind the ears where the red dots are with the face directly right of them in a white inking.It’s more of a half-sleeve tattoo - chicks love them too I hope
Posted by a work colleague, run in powershell if you want a full on nerdgasm!
# Defining a Message
$christmasMessage = "Merry Christmas and Happy Holidays!"
# Defining the Christmas Tree ASCII Art
$christmasTree = @"
*
/|\
/*|O\
/*/|\*\
/X/O|*\X\
/*/X/|\X\*\
/*/O/X|*\O\O\
/X/*/X/|\X\*\X\
/*/X/*/X|O\*\X\*\
|X|
|X|
"@
# Function to colour the tree
function Colour-ChristmasTree {
param (
[string]$tree,
[string]$colour
)
$treeLines = $tree -split "`n"
foreach ($line in $treeLines) {
foreach ($char in $line.ToCharArray()) {
if ($char -eq '*') {
Write-Host -NoNewline -ForegroundColor $colour $char
} else {
Write-Host -NoNewline -ForegroundColor Green $char
}
}
Write-Host
}
}
# Setting the colours for the lights
$colours = @("Yellow", "Red", "Blue")
# Loop to make the lights flash different colours
for ($i = 0; $i -lt 10; $i++) {
foreach ($colour in $colours) {
Clear-Host
Colour-ChristmasTree -tree $christmasTree -colour $colour
Write-Host -ForegroundColor Red $christmasMessage
Start-Sleep -Milliseconds 500
}
}
I did hear you out @SpyderTracks and im wondering if your on the Christmas excitement already 👀🙄👍🎅Now you say that, hear me out here, if you look at your image without the markings, but bear in mind the ears where the red dots are with the face directly right of them in a white inking.
It looks like the rabbit guy from Donnie Darko!!!
View attachment 43176
View attachment 43177