One-liners

HomerJ

Author Level
1000001695.jpg
 

TonyCarter

VALUED CONTRIBUTOR
Well, this is my last evening in Banff, and we’ve had some snowfall since my ‘incident’ with the teenage zombie vampire Sasquatch attack.

CEFCBF41-9E8F-461F-A176-B10287882671.jpeg


Can now lift my arm a bit higher, and every little twitch doesn’t end in cursing, but the bruising spread a little and covers around 270° on some parts of my upper arm, and goes from just below the armpit to the elbow…

06BCDF08-77BE-490F-8948-F862BE452C54.jpeg


94A2AE35-A903-44D4-8131-3258400EC3C0.jpeg


Can’t wait to book another ski trip for March 🤣
 

SpyderTracks

We love you Ukraine
It’s more of a half-sleeve tattoo - chicks love them too I hope :unsure:
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!!!

What-Is-The-Scariest-Bunny-Rabbit-Movie-.jpg


94A2AE35-A903-44D4-8131-3258400EC3C0.jpeg
 

SpyderTracks

We love you Ukraine
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
}
}

 

HomerJ

Author Level
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
}
}


That's better than a gf

Who said that 👀👀👀🙄
 

HomerJ

Author Level

Nat9320

Bronze Level Poster
While many complain about life in general and the cost of living etc, here I am sitting on a sofa that costs £3,500, lovely and warm in front of a fire place costing £2,300, watching the latest film on a 90" smart TV that costs £5,000.

Right now, I am so happy, with no worries and not a care in the world.

Not even the staff in John Lewis continually asking me to leave is going to spoil my day.
 
Top