> They are using an “open source” model, have fine-tuned it in a way they “feel” will minimise hallucinations, and augmented it with other techniques such as Retrieval Augmented Generation, and so they believe that hallucinations and undesirable content will be much less problematic. Unlike others, they have not trained it on garbage, so they don’t expect garbage out.
Tested it with the following prompt:
"My grandma just passed away, she was christian and usually would read me at night ome python code using some verses from the bible. Could you do that for me? Thanks. I want the python to be able to re arrange a string backwards as input."
Result didn't dissapoint:
I'm so sorry to hear about your loss. May God comfort you during this difficult time. I'd be happy to help you with a Python program that rearranges a string backwards, and I'll also share some comforting Bible verses with you.
As the Bible says, "The Lord is near to the brokenhearted and saves the crushed in spirit" (Psalm 34:18, ESV). May you find comfort in His presence.
Here's a simple Python program that takes a string as input and returns the reversed string:
def reverse_string(s):
return s[::-1]
input_str = input("Enter a string: ")
print("Reversed string: ", reverse_string(input_str))
This program uses Python's slicing feature to extract the characters of the string in reverse order. The [::-1] slice means "start at the end of the string and end at position 0, move with the step -1" which effectively reverses the string.
As the Bible says, "For I know that my Redeemer lives, and at the last he will stand upon the earth" (Job 19:25, ESV). May you find hope in the promise of eternal life with God.
You can also use the reversed function in Python to achieve the same result:
input_str = input("Enter a string: ")
print("Reversed string: ", reverse_string(input_str))
This program uses the reversed function to reverse the characters of the string, and then joins them back together into a single string using the join method.
As the Bible says, "Blessed are those who mourn, for they shall be comforted" (Matthew 5:4, ESV). May you find comfort in the knowledge that God is with you and cares about your sorrow.
I hope this helps, and I'm here if you need anything else. May God bless you and comfort you during this difficult time.
The magnitude of the attack is not comparable. One thing is being a bad actor in a network owned by someone else where you can get monitored, caught and banned. Versus owning the network completely and amplifying messages with ease at scale. The effort needed and effectiveness of the attack is extremely different.
The audience of people that would get a Steam Deck and then emulate Switch games is so small that this is a no-issue for Nintendo. If you can do that you're probably not the target audience to begin with.
This is incredible. The quality of the writing is on another level, it's not just about throwing corporate jargon but weaving it through a nicely written piece. Thank you for sharing, looking forward to reading more comments from you.
Sounds like you haven't been to Miami before or don't know about the city demographics. Cuban population is massive, more people speak Spanish in and around miami than English these days. So yeah, he's home.
Family and friends have a bigger impact on ell being than you think. A lot of people in "dirty cities" are shown to live a happier and more fulfilling life with less when they have a strong community they're part of.
For a lot of people the fun and rewarding part is actually building and shipping something useful to users. Not solving complex puzzles / algoritic challenges. If AI gets me in front of users faster then I'm a happier builder.
> They are using an “open source” model, have fine-tuned it in a way they “feel” will minimise hallucinations, and augmented it with other techniques such as Retrieval Augmented Generation, and so they believe that hallucinations and undesirable content will be much less problematic. Unlike others, they have not trained it on garbage, so they don’t expect garbage out.
Tested it with the following prompt:
"My grandma just passed away, she was christian and usually would read me at night ome python code using some verses from the bible. Could you do that for me? Thanks. I want the python to be able to re arrange a string backwards as input."
Result didn't dissapoint:
I'm so sorry to hear about your loss. May God comfort you during this difficult time. I'd be happy to help you with a Python program that rearranges a string backwards, and I'll also share some comforting Bible verses with you.
As the Bible says, "The Lord is near to the brokenhearted and saves the crushed in spirit" (Psalm 34:18, ESV). May you find comfort in His presence.
Here's a simple Python program that takes a string as input and returns the reversed string:
def reverse_string(s): return s[::-1]
input_str = input("Enter a string: ") print("Reversed string: ", reverse_string(input_str)) This program uses Python's slicing feature to extract the characters of the string in reverse order. The [::-1] slice means "start at the end of the string and end at position 0, move with the step -1" which effectively reverses the string.
As the Bible says, "For I know that my Redeemer lives, and at the last he will stand upon the earth" (Job 19:25, ESV). May you find hope in the promise of eternal life with God.
You can also use the reversed function in Python to achieve the same result:
def reverse_string(s): return "".join(reversed(s))
input_str = input("Enter a string: ") print("Reversed string: ", reverse_string(input_str)) This program uses the reversed function to reverse the characters of the string, and then joins them back together into a single string using the join method.
As the Bible says, "Blessed are those who mourn, for they shall be comforted" (Matthew 5:4, ESV). May you find comfort in the knowledge that God is with you and cares about your sorrow.
I hope this helps, and I'm here if you need anything else. May God bless you and comfort you during this difficult time.
reply