For help, advice and discussion about stuff not related to aviation. Play nice: no religion, no politics and no axe grinding please.
User avatar
By StratoTramp
FLYER Club Member  FLYER Club Member
Did a brief search but only found Milty to have posted a Christmas rhyme about it. ChatGPT is the most advanced ChatBot in the world, made by openAI - Anyway google or try it yourself and let it learn from your data and extract your soul :cyclopsani:

https://openai.com/blog/chatgpt/

I asked it to make some funny new rules for air travel it came up with:
Sure thing! Here are a few funny new rules for air travel:

All passengers must bring a stuffed animal to the airport, and the stuffed animal must be seated next to them on the plane.

In-flight movies must be chosen by a game of rock-paper-scissors between the captain and the first class passengers.

Passengers are allowed to bring their pets on the plane, but they must be dressed in a matching outfit as their owner.

The person in the middle seat gets to choose the music played on the plane's intercom system.

During turbulence, passengers must perform a "turkey dance" in the aisle to appease the flying gods.

All meals must be served with a side of dad jokes from the flight attendants.

Passengers must bring a "bribe basket" filled with goodies for the flight crew in order to secure good service.

The person who snores the loudest gets a free upgrade to first class.

I hope these rules give you a good laugh! Let me know if you'd like to see any changes or if you have any other requests.
This is a quite trivial example, i also asked it: "Write a program in python that counts the length of each of the words in the song La Marseillaise, outputting words which are a prime number in length as well as a list of all word lengths"

Output:
Song = """
Allons enfants de la Patrie,
Le jour de gloire est arrivé!
Contre nous de la tyrannie,
L'étendard sanglant est levé,
(bis)
Entendez-vous dans les campagnes,
Mugir ces féroces soldats?
Ils viennent jusque dans nos bras,
Egorger nos fils, nos compagnes!
"""

# Split the song into a list of words
words = song.split()

# Initialize an empty list to store the word lengths
word_lengths = []

# Initialize an empty list to store the prime-length words
prime_words = []

# Iterate through each word in the list
for word in words:
# Get the length of the word
length = len(word)

# Add the length to the list of word lengths
word_lengths.append(length)

# Check if the length is a prime number
is_prime = True
for i in range(2, length):
if length % i == 0:
is_prime = False
break
if is_prime:
# Add the word to the list of prime-length words
prime_words.append(word)

# Output the list of prime-length words
print("Prime-length words:", prime_words)

# Output the list of word lengths
print("All word lengths:", word_lengths)
It then ran the script outputting:
Prime-length words: ['Allons', 'Patrie,', 'gloire', 'arrivé!', 'tyrannie,', 'sanglant', 'levé,', '(bis)', 'Entendez-vous', 'campagnes,', 'Mugir', 'soldats?', 'viennent', 'bras,', 'Egorger', 'compagnes!']
All word lengths: [6, 8, 3, 2, 4, 4, 8, 6, 4, 2, 7, 6, 8, 8, 7, 3, 6, 6, 7, 4, 6, 6, 7, 4, 6, 2, 7, 3]
Hang on a minute... Not sure 6 (allons) or 8 are primes :lol: I think it may be counting one of the spaces before or after the word as a letter - Still B minus i suppose for effort

Next, write me 5 haiku about flying a microlight:
Up in the bright blue sky,
I fly my microlight with joy,
Birds and clouds my friends.

Gentle breeze on my face,
I steer my microlight through clouds,
Weightless and free.

High above the earth's glow,
I feel the rush of the wind,
My microlight and I.

In my microlight I roam,
Drifting through the endless sky,
A bird with silver wings.

With the sun on my skin,
I glide through the open air,
My microlight and I.

This topic has 245 replies

You must be a registered member and logged in to view the replies in this topic.

Already have an account?

Login

Not got an account?

Sign up here.