Hersheyβs Cookies & Cream
Cadbury Fruit & Nut
Describe your dream chocolate bar.
Codecademy Python3 Code Challenges 3: Count Multi X
# Write your count_multi_char_x function here:
def count_multi_char_x(word, x):
word_split = word.split(x)
return(len(word_split)-1)
# Uncomment these function calls to test your function:
print(count_multi_char_x("mississippi", "iss"))
# should print 2
print(count_multi_char_x("apple", "pp"))
# should print 1
Codecademy Python3 Code Challenges 2: Count X
# Write your count_char_x function here:
def count_char_x(word, x):
count = 0
for letter in word:
if letter == x:
count += 1
return count
# Uncomment these function calls to test your tip function:
print(count_char_x("mississippi", "s"))
# should print 4
print(count_char_x("mississippi", "m"))
# should print 1
Codecademy Python3 Code Challenges 1: Count Letters
letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
# Write your unique_english_letters function here:
def unique_english_letters(word):
unique_letters = []
for letter in word:
if letter in letters and letter not in unique_letters:
unique_letters.append(letter)
return len(unique_letters)
# Uncomment these function calls to test your function:
print(unique_english_letters("mississippi"))
# should print 4
print(unique_english_letters("Apple"))
# should print 4
Codecademy Python3 Project: Basta Fazoolin’ (my code)
class Menu:
def __init__(self, name, items, start_time, end_time):
self.name = name
self.items = items
self.start_time = start_time
self.end_time = end_time
def __str__(self):
return "{} menu is available from {} to {}.".format(self.name, self.start_time, self.end_time)
def calculate_bill(self, purchased_items):
self.purchased_items = purchased_items
total_bill = 0
for item in self.purchased_items:
total_bill += self.items.get(item, 0)
return total_bill
brunch_items = {
'pancakes': 7.50, 'waffles': 9.00, 'burger': 11.00, 'home fries': 4.50, 'coffee': 1.50, 'espresso': 3.00, 'tea': 1.00, 'mimosa': 10.50, 'orange juice': 3.50
}
early_bird_items = {
'salumeria plate': 8.00, 'salad and breadsticks (serves 2, no refills)': 14.00, 'pizza with quattro formaggi': 9.00, 'duck ragu': 17.50, 'mushroom ravioli (vegan)': 13.50, 'coffee': 1.50, 'espresso': 3.00,
}
dinner_items = {
'crostini with eggplant caponata': 13.00, 'caesar salad': 16.00, 'pizza with quattro formaggi': 11.00, 'duck ragu': 19.50, 'mushroom ravioli (vegan)': 13.50, 'coffee': 2.00, 'espresso': 3.00,
}
kids_items = {
'chicken nuggets': 6.50, 'fusilli with wild mushrooms': 12.00, 'apple juice': 3.00
}
brunch = Menu("brunch", brunch_items, 1100, 1600)
early_bird = Menu("early bird", early_bird_items, 1500, 1800)
dinner = Menu("dinner", dinner_items, 1700, 2300)
kids = Menu("kids", kids_items, 1100, 2100)
#print(brunch)
brunch_bill = brunch.calculate_bill(["pancakes", "home fries", "coffee"])
#print(brunch_bill)
early_bird_bill = early_bird.calculate_bill(["salumeria plate", "mushroom ravioli (vegan)"])
#print(early_bird_bill)
all_menus = [brunch, early_bird, dinner, kids]
class Franchise:
def __init__(self, address, menus):
self.address = address
self.menus = menus
def __str__(self):
return "{}".format(self.address)
def available_menus(self, time):
for menu in self.menus:
if time >= menu.start_time and time < menu.end_time:
print(menu, end = "\n\n")
return ""
flagship_store = Franchise("1232 West End Road", all_menus)
new_installment = Franchise("12 East Mulberry Street", all_menus)
#print(flagship_store)
#print(new_installment)
#print(flagship_store.available_menus(1200))
print(flagship_store.available_menus(1700))
class Business:
def __init__(self, name, franchises):
self.name = name
self.franchises = franchises
first_business = Business("Basta Fazoolin' with my Heart", [flagship_store, new_installment])
arepas_items = {
'arepa pabellon': 7.00, 'pernil arepa': 8.50, 'guayanes arepa': 8.00, 'jamon arepa': 7.50
}
arepas_menu = Menu("arepas", arepas_items, 1000, 2000)
arepas_place = Franchise("189 Fitzgerald Avenue", arepas_menu)
new_business = Business("Take a' Arepa", [arepas_place])
Codecademy Python3 Project: Hacking The Fender (my code)
import csv
compromised_users = []
with open('passwords.csv') as password_file:
password_csv = csv.DictReader(password_file)
for row in password_csv:
compromised_users.append(row['Username'])
with open('compronised_users.txt', 'w') as compromised_user_file:
for user in compromised_users:
compromised_user_file.write(user)
import json
with open('boss_message.json', 'w') as boss_message:
boss_message_dict = {
"recipient": "The Boss",
"message": "Mission Success"
}
json.dump(boss_message_dict, boss_message)
with open('new_passwords_csv', 'w') as new_passwords_obj:
slash_null_sig = """
_ _ ___ __ ____
/ )( \ / __) / \(_ _)
) \/ ( ( (_ \( O ) )(
\____/ \___/ \__/ (__)
_ _ __ ___ __ _ ____ ____
/ )( \ / _\ / __)( / )( __)( \
) __ (/ \( (__ ) ( ) _) ) D (
\_)(_/\_/\_/ \___)(__\_)(____)(____/
____ __ __ ____ _ _
___ / ___)( ) / _\ / ___)/ )( \
(___) \___ \/ (_/\/ \\___ \) __ (
(____/\____/\_/\_/(____/\_)(_/
__ _ _ _ __ __
( ( \/ )( \( ) ( )
/ /) \/ (/ (_/\/ (_/\
"""
new_passwords_obj.write(slash_null_sig)
I love Sherlock Holmes books.
Do you remember your favorite book from childhood?
41m. 126bpm. 11:11. 70%
Workout club!
Introduced me to Spirituality in sports. Meditation. Mindfulness. Psychedelics.
Sacred Hoops. Phil Jackson.
Atomic Habits.
Yogananda influenced me to read Christian literature.
Steve Jobs influenced me to read the autobio of Paramahansa Yogananda.
I have read other religious and spiritual books. Bhagavad Gita.
I am not a religious person but something happens when I read The New Testament.
Game of life and how to play it. Florence Scovel Shinn.
The Score Takes Care of Itself. Bill Walsh.
Autobio Andrew Carnegie.
Autobio of Ben Franklin.
I like self help books.
Well, it was not the ending but what happened.
I like The New Testament but I disagree with the ending.
The Alchemist. Paulo Coelho.
Influence. Robert Cialdini.
Dale Carnegie: How to win friends and influence people.
List three books that have had an impact on you. Why?
BLACKPINKΒ & Selena Gomez β Ice Cream Lyrics | Genius Lyrics
Play the part like Moses, keep it fresh like roses
β Read on genius.com/Blackpink-and-selena-gomez-ice-cream-lyrics
NickiΒ Minaj β Yikes
Yikes, what’s the hype? This is something light
β Read on genius.com/Nicki-minaj-yikes-lyrics
Matthew 25:21
His master replied, βWell done, good and faithful servant! You have been faithful with a few things; I will put you in charge of many things. Come and share your masterβs happiness!β
β Read on dailyverses.net/matthew/25/21
What is the key to bearing fruit as a Christian? | GotQuestions.org
What is the key to bearing fruit as a Christian? How can I bear more spiritual fruit in my Christian life?
β Read on www.gotquestions.org/bearing-fruit.html
John 15:8
This is to my Fatherβs glory, that you bear much fruit, showing yourselves to be my disciples.
β Read on dailyverses.net/john/15/8
Matthew 3:8
Produce fruit in keeping with repentance.
β Read on dailyverses.net/matthew/3/8
John 15:5
I am the vine; you are the branches. If you remain in me and I in you, you will bear much fruit; apart from me you can do nothing.
β Read on dailyverses.net/john/15/5
KB SWINGS. 27M. 107bpm.
Surah Maryam – 1-98 – Quran.com
An angel replied, βSo will it be! Your Lord says, βIt is easy for Me, just as I created you before, when you were nothing!ββ
β Read on quran.com/19
Surah Maryam – 1-98 – Quran.com
Zachariah said, βMy Lord! Grant me a sign.β He responded, βYour sign is that you will not ΛΉbe able toΛΊ speak to people for three nights, despite being healthy.β
β Read on quran.com/19
Matthew 10:38
Whoever does not take up their cross and follow me is not worthy of me.
β Read on dailyverses.net/matthew/10/38
John 14:12
Very truly I tell you, whoever believes in me will do the works I have been doing, and they will do even greater things than these, because I am going to the Father.
β Read on dailyverses.net/john/14/12
Philippians 1:6
Being confident of this, that he who began a good work in you will carry it on to completion until the day of Christ Jesus.
β Read on dailyverses.net/philippians/1/6
No desire to swim with sharks.
No desire to sky dive.
No desire to bungee jump.
There is a difference between fear and not wanting to do something.
Mental rehearsal before doing the thing.
The emotion passes when I remember to watch it and feel it.
Breathing & being mindful and paying attention to the fear sensation but not adding to it with more fearful thoughts.
Talking it out. Writing it out. Looking at worst case scenarios.
Fear could be a good emotion telling me not to do something.
Being in a good mood before doing the thing I fear helps. High positive emotional state.
Sometimes I use EFT to reduce fear.
Job 23:10-11
But he knows the way that I take; when he has tested me, I will come forth as gold. My feet have closely followed his steps; I have kept to his way without turning aside.
β Read on dailyverses.net/job/23/10-11
Highway driving when I got my license. Now I prefer highways to regular roads.
Feel the fear & do it anyway.
What fears have you overcome and how?
The Mastering Of Self: The Ultimate Guide To Your Saturn Return – xoNecole: Lifestyle, Culture, Love, & Wellness
A Saturn Return in the 10th house is here to help you build new systems of success for your career. The 10th house rules your professional and public life, social status, skills, talents, where you shine in life, and also your reputation.
β Read on www.xonecole.com/saturn-return-meaning-astrology/saturn-return-in-the-8th-house
Astrology advice: How to prepare for the Saturn Return – The Baltimore Banner
The good news is that Saturn is reliable and predictable in its demands. This is a slow-moving process and it takes about three years for Saturn to move through an astrological house. Saturn represents the way you experience the universe as you have structured it. Saturn energy requires discipline and hard work and shows what is real and tangible.
β Read on www.thebaltimorebanner.com/culture/astrology/astrology-preparing-for-saturn-return-FE3XU7TJTVG2ZORTJCO6OCN5AA/
Effect of transit of saturn in houses – AstroVidhi
Tenth house indicates occupation, profession and status. The Saturnβs transit highlights these areas and causes delays in professional success. There is a loss of status in the society and the native suffers from a financial crunch. The native suffers from mental agony and pain.
β Read on www.astrovidhi.com/effect-of-transits-of-planets-in-houses/effect-of-transit-of-saturn-in-houses/
Tone:

Matthew 17:20
He replied, βBecause you have so little faith. Truly I tell you, if you have faith as small as a mustard seed, you can say to this mountain, βMove from here to there,β and it will move. Nothing will be impossible for you.β
β Read on dailyverses.net/matthew/17/20
Writing.
Describe one simple thing you do that brings joy to your life.
Cardio. 31m 31s. 128bpm. 71%
When I feel tired, I take a break. Meditate.
How do you know when itβs time to unplug? What do you do to make it happen?
Romans 8:28 NIV
And we know that in all things God works for the good of those who love him, who have been called according to his purpose.
β Read on www.biblegateway.com/passage/
I am accepting of flaws. I have plenty.
I click with some people and not with others.
What quality do you value most in a friend?
Mark 13:11
Whenever you are arrested and brought to trial, do not worry beforehand about what to say. Just say whatever is given you at the time, for it is not you speaking, but the Holy Spirit.
β Read on dailyverses.net/mark/13/11
Psalm 139:1-2
You have searched me, LORD, and you know me. You know when I sit and when I rise; you perceive my thoughts from afar.
β Read on dailyverses.net/psalms/139/1-2
You must be logged in to post a comment.